Skip to content

Commit 3460f1e

Browse files
author
Simas Toleikis
committed
Fix inconsistency in defining global mustache object.
1 parent 34ebd1c commit 3460f1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
define(['exports'], factory); // AMD
1313
} else {
1414
global.Mustache = {};
15-
factory(Mustache); // script, wsh, asp
15+
factory(global.Mustache); // script, wsh, asp
1616
}
1717
}(this, function mustacheFactory (mustache) {
1818

0 commit comments

Comments
 (0)