Skip to content
Permalink
Browse files
charAt -> string indexing. Close gh-1359.
  • Loading branch information
FarSeeing authored and timmywil committed Sep 12, 2013
1 parent 4228905 commit 679536e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -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 ];

@@ -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;

0 comments on commit 679536e

Please sign in to comment.