Initial commit
This commit is contained in:
13
node-red-contrib-xiaomi-ht/node_modules/mustache/wrappers/jquery/mustache.js.post
generated
vendored
Normal file
13
node-red-contrib-xiaomi-ht/node_modules/mustache/wrappers/jquery/mustache.js.post
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
$.mustache = function (template, view, partials) {
|
||||
return Mustache.render(template, view, partials);
|
||||
};
|
||||
|
||||
$.fn.mustache = function (view, partials) {
|
||||
return $(this).map(function (i, elm) {
|
||||
var template = $.trim($(elm).html());
|
||||
var output = $.mustache(template, view, partials);
|
||||
return $(output).get();
|
||||
});
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user