16 lines
255 B
JavaScript
Executable File
16 lines
255 B
JavaScript
Executable File
/**
|
|
* 添加模板辅助方法
|
|
* @name template.helper
|
|
* @param {String} 名称
|
|
* @param {Function} 方法
|
|
*/
|
|
template.helper = function (name, helper) {
|
|
helpers[name] = helper;
|
|
};
|
|
|
|
var helpers = template.helpers = utils.$helpers;
|
|
|
|
|
|
|
|
|