Browse Source

Fixed helios frame resizing

Nicolas Petton 12 years ago
parent
commit
865224adc5
1 changed files with 4 additions and 1 deletions
  1. 4 1
      js/amber.js

+ 4 - 1
js/amber.js

@@ -304,7 +304,10 @@ amber = (function() {
         });
 
         function onResize() {
-            jQuery('#helios').css('top', '').css('bottom', '0px');
+            jQuery('#helios')
+                .css('top', '')
+                .css('width', '100%')
+                .css('bottom', '0px');
         }
 
         function onResizeStart() {