Fix ES5 no-extra-semi eslint rule [MAILPOET-1030]

This commit is contained in:
stoletniy
2017-09-04 09:20:15 +03:00
committed by pavel-mailpoet
parent 027418a86c
commit e347fc74a2
4 changed files with 4 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ define('handlebars_helpers', ['handlebars'], function(Handlebars) {
output = '';
for(var i = 0; i < size; i++) {
output += arguments[i];
};
}
return output;
});
@@ -28,7 +28,7 @@ define('handlebars_helpers', ['handlebars'], function(Handlebars) {
}
} else {
return timestamp;
};
}
});
Handlebars.registerHelper('cycle', function(value, block) {