diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-17 06:46:48 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-17 06:46:48 -0800 |
commit | 74472dc83ca897423c630dce0d1d7e3b13bb0b5f (patch) | |
tree | 4cac66304fcc8346ad238d2cda123160b65f3eb3 /themes | |
parent | eb1cdd037646b3697b64753652669fa9e25a5c8e (diff) | |
parent | 4ca55a90ee2f8e1d8595b0ec53a601d6c65475f6 (diff) |
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'themes')
-rw-r--r-- | themes/wind/css/fix-ie.css | 10 | ||||
-rw-r--r-- | themes/wind/js/ui.init.js | 3 |
2 files changed, 11 insertions, 2 deletions
diff --git a/themes/wind/css/fix-ie.css b/themes/wind/css/fix-ie.css index 4f0d0888..f7f08486 100644 --- a/themes/wind/css/fix-ie.css +++ b/themes/wind/css/fix-ie.css @@ -7,6 +7,16 @@ zoom: 1; } +#g-photo, +#g-movie { + zoom: 1; +} + +#g-photo .g-context-menu, +#g-movie .g-context-menu { + width: 240px; +} + input.submit { clear: none !important; display: inline !important; diff --git a/themes/wind/js/ui.init.js b/themes/wind/js/ui.init.js index 64eb6bc3..6edf6be4 100644 --- a/themes/wind/js/ui.init.js +++ b/themes/wind/js/ui.init.js @@ -98,8 +98,7 @@ $(document).ready(function() { $("#g-photo,#g-movie").gallery_fit_photo(); // Initialize context menus - var resize = $("#g-photo,#g-movie").gallery_get_photo(); - $(resize).hover(function(){ + $("#g-photo,#g-movie").hover(function(){ $(this).gallery_context_menu(); }); |