mirror of
https://github.com/jlengrand/webcomponentsjs.git
synced 2026-03-10 08:51:22 +00:00
Remove unused variable from parser.js
This commit is contained in:
@@ -255,7 +255,7 @@ var importParser = {
|
||||
if (doc && this._mayParse.indexOf(doc) < 0) {
|
||||
this._mayParse.push(doc);
|
||||
var nodes = doc.querySelectorAll(this.parseSelectorsForNode(doc));
|
||||
for (var i=0, l=nodes.length, p=0, n; (i<l) && (n=nodes[i]); i++) {
|
||||
for (var i=0, l=nodes.length, n; (i<l) && (n=nodes[i]); i++) {
|
||||
if (!this.isParsed(n)) {
|
||||
if (this.hasResource(n)) {
|
||||
return nodeIsImport(n) ? this.nextToParseInDoc(n.__doc, n) : n;
|
||||
|
||||
Reference in New Issue
Block a user