diff -r a51471894a9e -r b95aebb070b5 integration/back-office/js/mustache.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/integration/back-office/js/mustache.js Tue May 14 18:17:07 2013 +0200 @@ -0,0 +1,536 @@ +/*! + * 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; //