From 69efa31318238a1af5644da7aa5dc691dc33b376 Mon Sep 17 00:00:00 2001 From: John Resig Date: Sat, 2 Sep 2006 09:23:07 +0000 Subject: [PATCH] Added two quick semicolon fixes. --- src/jquery/jquery.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 9daa400..fdb488e 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -280,7 +280,7 @@ jQuery.fn = jQuery.prototype = { return num == undefined ? // Return a 'clean' array - jQuery.map( this, function(a){ return a } ) : + jQuery.merge( this, [] ) : // Return just the object this[num]; @@ -1201,7 +1201,7 @@ jQuery.extend({ } else if (elem.currentStyle) { - var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase()}); + var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();}); ret = elem.currentStyle[prop] || elem.currentStyle[newProp]; } else if (document.defaultView && document.defaultView.getComputedStyle) { -- 1.7.10.4