소스 검색

Use var declaration for helper functions

tags/0.5.2
Michael Jackson 14 년 전
부모
커밋
72971b320c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      mustache.js

+ 2
- 2
mustache.js 파일 보기

@@ -239,9 +239,9 @@ var Mustache = (typeof module !== "undefined" && module.exports) || {};
break;
case "function":
var sectionText = callback(context, this), self = this;
function scopedRender(template) {
var scopedRender = function (template) {
return self.render(template, context);
}
};
return value.call(context.view, sectionText, scopedRender) || "";
break;
default:


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