From 82e77a26c600473430057eba9764f2a95dfab484 Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Wed, 17 Oct 2012 13:47:07 -0400 Subject: [PATCH] add mustache.js to common static repo --- common/static/js/vendor/mustache.js | 613 ++++++++++++++++++++++++++++ 1 file changed, 613 insertions(+) create mode 100644 common/static/js/vendor/mustache.js diff --git a/common/static/js/vendor/mustache.js b/common/static/js/vendor/mustache.js new file mode 100644 index 0000000000..aab62f9ddc --- /dev/null +++ b/common/static/js/vendor/mustache.js @@ -0,0 +1,613 @@ +/*! + * mustache.js - Logic-less {{mustache}} templates with JavaScript + * http://github.com/janl/mustache.js + */ + +var Mustache; + +(function (exports) { + if (typeof module !== "undefined") { + module.exports = exports; // CommonJS + } else if (typeof define === "function") { + define(exports); // AMD + } else { + Mustache = exports; //