move example into another folder

This commit is contained in:
ansuz 2017-07-23 14:19:43 +02:00
parent f5454f232a
commit 0d43a84c2b
11 changed files with 2 additions and 2 deletions

View File

@ -58,10 +58,10 @@
* }); * });
*/ */
Template.prototype.show = function (data) { Template.prototype.show = function (data) {
var i, l; var i = 0, l = data.length;
var view = ''; var view = '';
for (i = 0, l = data.length; i < l; i++) { for (; i < l; i++) {
var template = this.defaultTemplate; var template = this.defaultTemplate;
var completed = ''; var completed = '';
var checked = ''; var checked = '';