Landed a fix for bug #2037.

This commit is contained in:
John Resig 2008-02-06 05:18:25 +00:00
parent e71e4a47f3
commit f43516f209

View file

@ -852,9 +852,9 @@ jQuery.extend({
} }
// Opera sometimes will give the wrong display answer, this fixes it, see #2037 // Opera sometimes will give the wrong display answer, this fixes it, see #2037
if ( jQuery.browser.opera && name == "display" ) { if ( jQuery.browser.opera && name == "display" ) {
var save = elem.style.display; var save = elem.style.outline;
elem.style.display = "block"; elem.style.outline = "0 solid black";
elem.style.display = save; elem.style.outline = save;
} }
// Make sure we're using the right name for getting the float value // Make sure we're using the right name for getting the float value