diff --git a/ajax/libs/mustache.js/0.8.1/mustache.js b/ajax/libs/mustache.js/0.8.1/mustache.js new file mode 100644 index 000000000..3a84b74d4 --- /dev/null +++ b/ajax/libs/mustache.js/0.8.1/mustache.js @@ -0,0 +1,570 @@ +/*! + * mustache.js - Logic-less {{mustache}} templates with JavaScript + * http://github.com/janl/mustache.js + */ + +/*global define: false*/ + +(function (root, factory) { + if (typeof exports === "object" && exports) { + factory(exports); // CommonJS + } else { + var mustache = {}; + factory(mustache); + if (typeof define === "function" && define.amd) { + define(mustache); // AMD + } else { + root.Mustache = mustache; //