Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
jan
/
mustache.js
mirror da
https://github.com/janl/mustache.js
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Rilasci
46
Wiki
Attività
Sfoglia il codice sorgente
Update wrappers to use Mustache.render
tags/0.5.1
Michael Jackson
14 anni fa
parent
cfc7de8ddd
commit
16a1d587c6
4 ha cambiato i file
con
4 aggiunte
e
4 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
wrappers/dojo/mustache.js.tpl.post
+1
-1
wrappers/jquery/jquery.mustache.js.tpl.post
+1
-1
wrappers/qooxdoo/qooxdoo.mustache.js.tpl.post
+1
-1
wrappers/yui3/mustache.js.tpl.post
+ 1
- 1
wrappers/dojo/mustache.js.tpl.post
Vedi File
@@ -1,4 +1,4 @@
dojox.mustache = dojo.hitch(Mustache, "
to_html
");
dojox.mustache = dojo.hitch(Mustache, "
render
");
})();
+ 1
- 1
wrappers/jquery/jquery.mustache.js.tpl.post
Vedi File
@@ -1,6 +1,6 @@
$.mustache = function(template, view, partials) {
return Mustache.
to_html
(template, view, partials);
return Mustache.
render
(template, view, partials);
};
})(jQuery);
+ 1
- 1
wrappers/qooxdoo/qooxdoo.mustache.js.tpl.post
Vedi File
@@ -4,6 +4,6 @@
// EXPOSE qooxdoo variant
qx.bom.Template.version = Mustache.version;
qx.bom.Template.toHtml = Mustache.
to_html
;
qx.bom.Template.toHtml = Mustache.
render
;
})();
+ 1
- 1
wrappers/yui3/mustache.js.tpl.post
Vedi File
@@ -1,4 +1,4 @@
Y.mustache = Mustache.
to_html
;
Y.mustache = Mustache.
render
;
}, "0");
Write
Preview
Loading…
Annulla
Salva