Skip to content

Commit

Permalink
Merge pull request #532 from simast/master
Browse files Browse the repository at this point in the history
Fix inconsistency in defining global mustache object.
  • Loading branch information
dasilvacontin committed Nov 29, 2015
2 parents 34ebd1c + 3460f1e commit 60a41db
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 60a41db

Please sign in to comment.