From a572642ee468f15d708b7a9ad2452383f29e3368 Mon Sep 17 00:00:00 2001 From: Yousef Cisco Date: Wed, 17 Jun 2015 17:31:23 +0100 Subject: [PATCH] Added global Mustache definition --- mustache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index afe4493..44d1fa6 100644 --- a/mustache.js +++ b/mustache.js @@ -11,7 +11,7 @@ } else if (typeof define === 'function' && define.amd) { define(['exports'], factory); // AMD } else { - Mustache = {}; + global.Mustache = {}; factory(Mustache); // script, wsh, asp } }(this, function mustacheFactory (mustache) {