Skip to content

Commit

Permalink
Fix inconsistency in defining global mustache object.
Browse files Browse the repository at this point in the history
  • Loading branch information
Simas Toleikis committed Nov 26, 2015
1 parent 34ebd1c commit 3460f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mustache.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {

Expand Down

0 comments on commit 3460f1e

Please sign in to comment.