A Twitch.tv viewer reward and games system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
359 B

12 years ago
  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 = $(elm).html().trim();
  7. var output = $.mustache(template, view, partials);
  8. return $(output).get();
  9. });
  10. };
  11. })(jQuery);