Bladeren bron

Merge pull request #454 from nagaozen/patch-4

Minor changes to make it compatible with both WSH and ASP (eslint com…
tags/v2.1.0
Phillip Johnsen 11 jaren geleden
bovenliggende
commit
c1160a2b32
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. +3
    -2
      mustache.js

+ 3
- 2
mustache.js Bestand weergeven

@@ -3,7 +3,7 @@
* http://github.com/janl/mustache.js
*/

/*global define: false*/
/*global define: false Mustache: true*/

(function defineMustache (global, factory) {
if (typeof exports === 'object' && exports) {
@@ -11,7 +11,8 @@
} else if (typeof define === 'function' && define.amd) {
define(['exports'], factory); // AMD
} else {
factory(global.Mustache = {}); // <script>
Mustache = {};
factory(Mustache); // script, wsh, asp
}
}(this, function mustacheFactory (mustache) {



Laden…
Annuleren
Opslaan