Remove unused variable from parser.js

This commit is contained in:
Tomek Wytrębowicz
2015-12-28 14:36:50 +01:00
parent 5f1284369e
commit b88aeb07db

View File

@@ -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;