Side navigation
Ticket #4460: jquery-nightly.3.patch
File jquery-nightly.3.patch, 0.3 KB (added by ThomasCr, April 02, 2009 10:02AM UTC)
ups.. fixed version.. console.debug() now :)
--- jquery-nightly.js 2009-04-02 11:39:58.000000000 +0200
+++ jquery.js 2009-04-02 12:01:00.000000000 +0200
@@ -3212,7 +3212,7 @@
});
if ( set )
- style[ name ] = value;
+ try {style[ name ] = value;} catch(e) {console.debug('invalid style: ' + name + '=' + value);}
return style[ name ];
},
Download in other formats:
Original Format
File jquery-nightly.3.patch, 0.3 KB (added by ThomasCr, April 02, 2009 10:02AM UTC)
ups.. fixed version.. console.debug() now :)
--- jquery-nightly.js 2009-04-02 11:39:58.000000000 +0200
+++ jquery.js 2009-04-02 12:01:00.000000000 +0200
@@ -3212,7 +3212,7 @@
});
if ( set )
- style[ name ] = value;
+ try {style[ name ] = value;} catch(e) {console.debug('invalid style: ' + name + '=' + value);}
return style[ name ];
},