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; // +