mustache.js.post 359 B

12345678910111213
  1. $.mustache = function (template, view, partials) {
  2. return Mustache.render(template, view, partials);
  3. };
  4. $.fn.mustache = function (view, partials) {
  5. return $(this).map(function (i, elm) {
  6. var template = $.trim($(elm).html());
  7. var output = $.mustache(template, view, partials);
  8. return $(output).get();
  9. });
  10. };
  11. })(jQuery);