aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-08-07 22:25:26 +0000
committerJohn Resig <jeresig@gmail.com>2007-08-07 22:25:26 +0000
commit78fe70f3e6585dd645ac7b0d8dc0ca06fee113e1 (patch)
treee7ad546a3835b8657b8741841a0d1340082709a4 /src
parent560484fd8d17ce6cf0b0d5748ad55d3dcb19d44f (diff)
downloadjquery-78fe70f3e6585dd645ac7b0d8dc0ca06fee113e1.tar.gz
jquery-78fe70f3e6585dd645ac7b0d8dc0ca06fee113e1.zip
More missing semicolons.
Diffstat (limited to 'src')
-rw-r--r--src/event/event.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/event.js b/src/event/event.js
index d753e6f85..1b24a31e7 100644
--- a/src/event/event.js
+++ b/src/event/event.js
@@ -486,7 +486,7 @@ jQuery.fn.extend({
var p = e.relatedTarget;
// 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 ( p == this ) return false;
@@ -545,7 +545,7 @@ jQuery.fn.extend({
// Otherwise, remember the function for later
else
// 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;
}