More missing semicolons.
This commit is contained in:
parent
560484fd8d
commit
78fe70f3e6
|
@ -486,7 +486,7 @@ jQuery.fn.extend({
|
||||||
var p = e.relatedTarget;
|
var p = e.relatedTarget;
|
||||||
|
|
||||||
// Traverse up the tree
|
// Traverse up the tree
|
||||||
while ( p && p != this ) try { p = p.parentNode } catch(e) { p = this; };
|
while ( p && p != this ) try { p = p.parentNode; } catch(e) { p = this; };
|
||||||
|
|
||||||
// If we actually just moused on to a sub-element, ignore it
|
// If we actually just moused on to a sub-element, ignore it
|
||||||
if ( p == this ) return false;
|
if ( p == this ) return false;
|
||||||
|
@ -545,7 +545,7 @@ jQuery.fn.extend({
|
||||||
// Otherwise, remember the function for later
|
// Otherwise, remember the function for later
|
||||||
else
|
else
|
||||||
// Add the function to the wait list
|
// Add the function to the wait list
|
||||||
jQuery.readyList.push( function() { return f.apply(this, [jQuery]) } );
|
jQuery.readyList.push( function() { return f.apply(this, [jQuery]); } );
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue