fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-10-02 06:27 pm

[dw-free] Manage subscription filters page doesn't work properly in IE

[commit: http://hg.dwscoalition.org/dw-free/rev/c49a6c4a5fa7]

http://bugs.dwscoalition.org/show_bug.cgi?id=1805

Reset select width to 100% in older versions of IE.

Patch by [personal profile] skakri.

Files modified:
  • htdocs/js/subfilters.js
--------------------------------------------------------------------------------
diff -r 54e018ff2182 -r c49a6c4a5fa7 htdocs/js/subfilters.js
--- a/htdocs/js/subfilters.js	Mon Oct 03 02:06:43 2011 +0800
+++ b/htdocs/js/subfilters.js	Mon Oct 03 02:27:20 2011 +0800
@@ -145,6 +145,8 @@
 
     $('#cf-in-list').html( inOpts );
     $('#cf-notin-list').html( outOpts );
+
+    if ($.browser.msie && parseInt($.browser.version, 10) <= 8) $('#cf-in-list, #cf-notin-list').css('width', 'auto').css('width', '100%'); // set #cf-in-list and #cf-notin-list width (IE n..7 bug)
 }
 
 
--------------------------------------------------------------------------------