diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/init.js | 2 | ||||
-rw-r--r-- | src/css.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/init.js b/src/core/init.js index e349bb616..daf5d1909 100644 --- a/src/core/init.js +++ b/src/core/init.js @@ -23,7 +23,7 @@ var rootjQuery, // Handle HTML strings if ( typeof selector === "string" ) { - if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; diff --git a/src/css.js b/src/css.js index 79ab342d5..ee6a3935b 100644 --- a/src/css.js +++ b/src/css.js @@ -46,7 +46,7 @@ function vendorPropName( style, name ) { } // check for vendor prefixed names - var capName = name.charAt(0).toUpperCase() + name.slice(1), + var capName = name[0].toUpperCase() + name.slice(1), origName = name, i = cssPrefixes.length; |