diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2011-05-16 22:37:09 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2011-05-16 22:37:09 -0600 |
commit | 8549ba30ca5045211d2efcf8e1c4f98f8a1e9f25 (patch) | |
tree | 00f9d613f0648560fbca09eab0078f8e14a36854 /themes/wind/js/ui.init.js | |
parent | 9aeb824aa1d15bd94bd7cef0a322c4e8a667e67b (diff) |
Stop IE 9 album grid craziness. Thanks floridave. Fixes #1430.
Diffstat (limited to 'themes/wind/js/ui.init.js')
-rw-r--r-- | themes/wind/js/ui.init.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/wind/js/ui.init.js b/themes/wind/js/ui.init.js index 2c67bf3a..3ee3e32e 100644 --- a/themes/wind/js/ui.init.js +++ b/themes/wind/js/ui.init.js @@ -82,7 +82,7 @@ $(document).ready(function() { } else { var sib_height = $(this).prev().height(); } - if ($.browser.msie && $.browser.version >= 8) { + if ($.browser.msie && $.browser.version <= 8) { sib_height = sib_height + 1; } $(this).css("height", sib_height); |