From: John Resig Date: Tue, 7 Aug 2007 22:25:26 +0000 (+0000) Subject: More missing semicolons. X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=78fe70f3e6585dd645ac7b0d8dc0ca06fee113e1 More missing semicolons. --- diff --git a/src/event/event.js b/src/event/event.js index d753e6f..1b24a31 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; }