소스 검색

Allow context to be used as template. Maintain chainability.

tags/0.5.1
Phui Hock Michael Jackson 14 년 전
부모
커밋
bfcc05a93f
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. +9
    -1
      wrappers/jquery/jquery.mustache.js.tpl.post

+ 9
- 1
wrappers/jquery/jquery.mustache.js.tpl.post 파일 보기

@@ -1,6 +1,14 @@

$.mustache = function(template, view, partials) {
$.mustache = function (template, view, partials) {
return Mustache.render(template, view, partials);
};

$.fn.mustache = function (view, partials) {
return $(this).map(function (i, elm) {
var template = $(elm).html().trim();
var output = $.mustache(template, view, partials);
return $(output).get();
});
};

})(jQuery);

불러오는 중...
취소
저장