diff options
Diffstat (limited to 'module/web/static/js/views/fileView.js')
-rw-r--r-- | module/web/static/js/views/fileView.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/web/static/js/views/fileView.js b/module/web/static/js/views/fileView.js index 1c96c61e2..85b40a413 100644 --- a/module/web/static/js/views/fileView.js +++ b/module/web/static/js/views/fileView.js @@ -1,11 +1,12 @@ -define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) { +define(['jquery', 'backbone', 'underscore', 'handlebars'], function($, Backbone, _, HB) { // Renders single file item return Backbone.View.extend({ tagName: 'li', className: 'file-view', - template: _.template($("#template-file").html()), +// template: _.template($("#template-file").html()), + template: HB.compile($("#template-file").html()), events: { }, |