This website works better with JavaScript.
Home
Explore
Help
Sign In
jan
/
mustache.js
mirror of
https://github.com/janl/mustache.js
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
46
Wiki
Activity
Browse Source
Merge pull request
#532
from simast/master
Fix inconsistency in defining global mustache object.
tags/v2.2.1
David da Silva
10 years ago
parent
34ebd1cb1a
3460f1ef67
commit
60a41db58a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mustache.js
+ 1
- 1
mustache.js
View File
@@ -12,7 +12,7 @@
define(['exports'], factory); // AMD
} else {
global.Mustache = {};
factory(Mustache); // script, wsh, asp
factory(
global.
Mustache); // script, wsh, asp
}
}(this, function mustacheFactory (mustache) {
Write
Preview
Loading…
Cancel
Save