Skip to content

Commit

Permalink
Merge pull request #163 from chuckdumont/master
Browse files Browse the repository at this point in the history
Remove use of const keyword from client-side code.  Fixes #162
  • Loading branch information
chuckdumont authored Apr 6, 2018
2 parents ace4b83 + 8f9a236 commit 0703ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DojoAMDMainTemplate.runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ module.exports = {
var result;
if (mid in req.absMids && __webpack_require__.m[req.absMids[mid]]) {
if (noInstall) {
const module = installedModules[req.absMids[mid]];
var module = installedModules[req.absMids[mid]];
result = module && module.l && (asModuleObj ? module : module.exports);
} else {
result = __webpack_require__(req.absMids[mid]);
Expand Down

0 comments on commit 0703ffd

Please sign in to comment.