mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 19:59:54 -08:00
Update Set-implementation-list.md
This commit is contained in:
parent
246f5b7b12
commit
6d9845d304
23 changed files with 3549 additions and 0 deletions
13
node_modules/mustache/wrappers/jquery/mustache.js.post
generated
vendored
Normal file
13
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);
|
||||
9
node_modules/mustache/wrappers/jquery/mustache.js.pre
generated
vendored
Normal file
9
node_modules/mustache/wrappers/jquery/mustache.js.pre
generated
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
Shameless port of a shameless port
|
||||
@defunkt => @janl => @aq
|
||||
|
||||
See http://github.com/defunkt/mustache for more info.
|
||||
*/
|
||||
|
||||
;(function($) {
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue