Hid an issue where Safari through an exception when a colgroup was created in jQuery.clean. Not completely sure what the cause is, yet.
This commit is contained in:
parent
303ad32c74
commit
cff37cc835
|
@ -916,7 +916,10 @@ jQuery.extend({
|
||||||
});
|
});
|
||||||
|
|
||||||
// Clean up
|
// Clean up
|
||||||
div.innerHTML = "";
|
// Safari 3.1 throws an exception when a colgroup is created
|
||||||
|
try {
|
||||||
|
div.innerHTML = "";
|
||||||
|
} catch(e){}
|
||||||
|
|
||||||
if ( fragment ) {
|
if ( fragment ) {
|
||||||
for ( var i = 0; ret[i]; i++ ) {
|
for ( var i = 0; ret[i]; i++ ) {
|
||||||
|
|
Loading…
Reference in a new issue