From 37de8cfdb9c1845cb31674ff03d9ddbbc17fa092 Mon Sep 17 00:00:00 2001 From: Alexis Lee Date: Fri, 30 May 2014 11:53:48 +0100 Subject: [PATCH] Update mustache.js to 0.8.1 This is the latest release from https://github.com/janl/mustache.js/releases/tag/0.8.1 --- ajax/libs/mustache.js/0.8.1/mustache.js | 570 ++++++++++++++++++++ ajax/libs/mustache.js/0.8.1/mustache.min.js | 1 + ajax/libs/mustache.js/package.json | 59 +- 3 files changed, 600 insertions(+), 30 deletions(-) create mode 100644 ajax/libs/mustache.js/0.8.1/mustache.js create mode 100644 ajax/libs/mustache.js/0.8.1/mustache.min.js 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; //