Преглед изворни кода

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:


Loading…
Откажи
Сачувај