Skip to content

Commit 60a41db

Browse files
committed
Merge pull request #532 from simast/master
Fix inconsistency in defining global mustache object.
2 parents 34ebd1c + 3460f1e commit 60a41db

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)