X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-handlebars.js;h=bd9af8d1065d9154c237f8756b17e0cb5a96cbbe;hp=866dc8a7b33abcd25c4c8a5c1e23ec53acd89e47;hb=928e582912ca5fcddd5a8c70c559bb97d1acdbff;hpb=e32341fa8876fbada43f2a8b38bcc8e3c06d8f33 diff --git a/src/mkws-handlebars.js b/src/mkws-handlebars.js index 866dc8a..bd9af8d 100644 --- a/src/mkws-handlebars.js +++ b/src/mkws-handlebars.js @@ -96,3 +96,11 @@ Handlebars.registerHelper('mkws-commaList', function(items, options) { Handlebars.registerHelper('mkws-index1', function(obj) { return obj.data.index + 1; }); + +Handlebars.registerHelper('mkws-repeat', function(count, options) { + var out = ""; + for (var i = 0; i < count; i++) { + out += options.fn(this); + } + return out; +});