Fix accidental global variable.

This commit is contained in:
Tim Oxley
2014-12-14 05:31:12 +08:00
parent d83cc676df
commit 31b229021f

View File

@@ -22,7 +22,7 @@ var importer = scope.importer;
var dynamic = {
// process (load/parse) any nodes added to imported documents.
added: function(nodes) {
var owner, parsed;
var owner, parsed, loading;
for (var i=0, l=nodes.length, n; (i<l) && (n=nodes[i]); i++) {
if (!owner) {
owner = n.ownerDocument;