Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dynamic.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var dynamic = {
}
// note: the act of loading kicks the parser, so we use parseDynamic's
// 2nd argument to control if this added node needs to kick the parser.
loading = this.shouldLoadNode(n);
var loading = this.shouldLoadNode(n);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, but would you please add this to line 24 instead?

if (loading) {
importer.loadNode(n);
}
Expand Down