Skip to content

Commit 8914773

Browse files
author
Nikita
authored
Fix error with local variables
1 parent 134443d commit 8914773

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ElementQueries.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,8 @@
330330
* @param {String} css
331331
*/
332332
function extractQuery(css) {
333-
var match;
334-
var smatch;
333+
var match, smatch, attrs, attrMatch;
334+
335335
css = css.replace(/'/g, '"');
336336
while (null !== (match = regex.exec(css))) {
337337
smatch = match[1] + match[3];

0 commit comments

Comments
 (0)