Skip to content

Commit adefff4

Browse files
Nikitamarcj
authored andcommitted
Fix error with local variables (marcj#167)
1 parent 4d6469b commit adefff4

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)