Added two quick semicolon fixes.
This commit is contained in:
parent
744c0609d4
commit
69efa31318
1 changed files with 2 additions and 2 deletions
4
src/jquery/jquery.js
vendored
4
src/jquery/jquery.js
vendored
|
@ -280,7 +280,7 @@ jQuery.fn = jQuery.prototype = {
|
||||||
return num == undefined ?
|
return num == undefined ?
|
||||||
|
|
||||||
// Return a 'clean' array
|
// Return a 'clean' array
|
||||||
jQuery.map( this, function(a){ return a } ) :
|
jQuery.merge( this, [] ) :
|
||||||
|
|
||||||
// Return just the object
|
// Return just the object
|
||||||
this[num];
|
this[num];
|
||||||
|
@ -1201,7 +1201,7 @@ jQuery.extend({
|
||||||
|
|
||||||
} else if (elem.currentStyle) {
|
} 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];
|
ret = elem.currentStyle[prop] || elem.currentStyle[newProp];
|
||||||
|
|
||||||
} else if (document.defaultView && document.defaultView.getComputedStyle) {
|
} else if (document.defaultView && document.defaultView.getComputedStyle) {
|
||||||
|
|
Loading…
Reference in a new issue