Skip to content

Commit cef4b73

Browse files
authored
Selector: Bring back querySelectorAll shortcut usage
Due to a faulty IE 8 workaround removal, the fast path qSA mode was skipped when jQuery's find was called on an element node - i.e. in most cases. 😱 Ref gh-4395 Closes gh-4452
1 parent 4783596 commit cef4b73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/selector.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,7 @@ function find( selector, context, results, seed ) {
218218

219219
// Take advantage of querySelectorAll
220220
if ( !nonnativeSelectorCache[ selector + " " ] &&
221-
( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&
222-
nodeType !== 1 ) {
221+
( !rbuggyQSA || !rbuggyQSA.test( selector ) ) ) {
223222

224223
newSelector = selector;
225224
newContext = context;

0 commit comments

Comments
 (0)