Sha256: b52460e514dd131c867290a84452813bba0bf479b86b9fc32d5ef779874c99d6

Contents?: true

Size: 1.76 KB

Versions: 3

Compression:

Stored size: 1.76 KB

Contents

{I"
class:EFI"ProcessedAsset;FI"logical_path;FI"!umlaut/ensure_window_size.js;TI"
pathname;FI"`/Users/jrochkind/code/umlaut-rails4/app/assets/javascripts/umlaut/ensure_window_size.js.erb;TI"content_type;FI"application/javascript;FI"
mtime;Fl+l»SI"length;FißI"digest;F"%c5f4b2198f2eb906d2c69fa97f35c07aI"source;FI"ß// Some code to re-size our window to config defined minimum height/width
//     We have little control over what size a content provider generates a
//     window for a link resolver. Often it's too small. So we resize in
//     js.

// Some browsers won't let us resize the window though. Oh well, we try. 
// Those that wont' let us just silently no-op. 

jQuery(document).ready(function($) {    
  var min_width = 820;
  var min_height = 400;

  // Default to something huge, so if we fail in getting dimensions,
  // we won't resize. 
  var orig_width = 100000; 
  var orig_height = 100000;
  
  // JQuery document viewport width/height 
  
  orig_width = $(window).width();
  orig_height = $(window).height();
  
  
  
  width_diff = min_width - orig_width;
  height_diff = min_height - orig_height;
  
  if (width_diff < 0) { width_diff = 0 }
  if (height_diff < 0) { height_diff = 0 }
  
  if (width_diff >0 || height_diff > 0) {
    window.resizeBy(width_diff, height_diff)
  }
});
;TI"dependency_digest;F"%7eb51f470ec31e33d1347acc04955242I"required_paths;F[I"`/Users/jrochkind/code/umlaut-rails4/app/assets/javascripts/umlaut/ensure_window_size.js.erb;TI"dependency_paths;F[{I"	path;FI"`/Users/jrochkind/code/umlaut-rails4/app/assets/javascripts/umlaut/ensure_window_size.js.erb;TI"
mtime;FI"2014-07-07T17:17:32-04:00;FI"digest;F"%d40081e3c301a60ed83752c1f8632fd3I"
_version;F"%6584930913c75ff69ba506e1cfbae2c9

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
umlaut-4.0.0.beta3 ./test/dummy/tmp/cache/assets/development/sprockets/5bdde916a6e5824d9c695657aaada893
umlaut-4.0.0.beta2 ./test/dummy/tmp/cache/assets/development/sprockets/5bdde916a6e5824d9c695657aaada893
umlaut-4.0.0.beta1 ./test/dummy/tmp/cache/assets/development/sprockets/5bdde916a6e5824d9c695657aaada893