jQuery: The Write Less, Do More JavaScript Library

Ticket #2037: 2037.diff

File 2037.diff, 0.5 kB (added by davidserduke, 8 months ago)

patch

  • src/core.js

     
    816816                "1" : 
    817817                ret; 
    818818        } 
     819        // Opera sometimes will give the wrong display answer, this fixes it, see #2037 
     820        if ( jQuery.browser.opera && name == "display" ) { 
     821            var save = elem.style.display; 
     822            elem.style.display = "block"; 
     823            elem.style.display = save; 
     824        } 
    819825         
    820826        // Make sure we're using the right name for getting the float value 
    821827        if ( name.match( /float/i ) )