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

Commit 3d0910e

Browse files
committed
update the latest dist files
1 parent fb1ab95 commit 3d0910e

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

dist/secure-handlebars.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7965,9 +7965,11 @@ function amdefine(module, requireFn) {
79657965
});
79667966

79677967
//Wait for next tick to call back the require call.
7968-
process.nextTick(function () {
7969-
callback.apply(null, deps);
7970-
});
7968+
if (callback) {
7969+
process.nextTick(function () {
7970+
callback.apply(null, deps);
7971+
});
7972+
}
79717973
}
79727974
}
79737975

@@ -9268,7 +9270,7 @@ var ContextParser = require('./strict-context-parser.js'),
92689270
configContextParser = {
92699271
enableInputPreProcessing: true,
92709272
enableCanonicalization: true,
9271-
enableIEConditionalComments: true,
9273+
enableIEConditionalComments: false,
92729274
enableStateTracking: true
92739275
},
92749276
handlebarsUtils = require('./handlebars-utils.js'),

0 commit comments

Comments
 (0)