Skip to content
This repository was archived by the owner on Sep 20, 2019. It is now read-only.

Commit 1201cd2

Browse files
committed
Merge pull request #472 from tomalec/patch-1
Remove unused variable from parser.js
2 parents 01c0f63 + b88aeb0 commit 1201cd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/HTMLImports/parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ var importParser = {
255255
if (doc && this._mayParse.indexOf(doc) < 0) {
256256
this._mayParse.push(doc);
257257
var nodes = doc.querySelectorAll(this.parseSelectorsForNode(doc));
258-
for (var i=0, l=nodes.length, p=0, n; (i<l) && (n=nodes[i]); i++) {
258+
for (var i=0, l=nodes.length, n; (i<l) && (n=nodes[i]); i++) {
259259
if (!this.isParsed(n)) {
260260
if (this.hasResource(n)) {
261261
return nodeIsImport(n) ? this.nextToParseInDoc(n.__doc, n) : n;

0 commit comments

Comments
 (0)