Build: Update Sizzle to 2.3.3

Fixes gh-3263
This commit is contained in:
Richard Gibson 2016-08-08 14:05:43 -04:00
parent 6160523d30
commit cca2aa2254
4 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/*! /*!
* Sizzle CSS Selector Engine v2.3.2 * Sizzle CSS Selector Engine v2.3.3
* https://sizzlejs.com/ * https://sizzlejs.com/
* *
* Copyright jQuery Foundation and other contributors * Copyright jQuery Foundation and other contributors
@ -179,7 +179,7 @@ var i,
disabledAncestor = addCombinator( disabledAncestor = addCombinator(
function( elem ) { function( elem ) {
return elem.disabled === true; return elem.disabled === true && ("form" in elem || "label" in elem);
}, },
{ dir: "parentNode", next: "legend" } { dir: "parentNode", next: "legend" }
); );

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -53,7 +53,7 @@
"qunitjs": "1.23.1", "qunitjs": "1.23.1",
"requirejs": "2.2.0", "requirejs": "2.2.0",
"sinon": "1.17.3", "sinon": "1.17.3",
"sizzle": "2.3.2", "sizzle": "2.3.3",
"strip-json-comments": "2.0.1", "strip-json-comments": "2.0.1",
"testswarm": "1.1.0" "testswarm": "1.1.0"
}, },