summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/fileView.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/views/fileView.js')
-rw-r--r--module/web/static/js/views/fileView.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/module/web/static/js/views/fileView.js b/module/web/static/js/views/fileView.js
index 86f7b33d2..c7b87e871 100644
--- a/module/web/static/js/views/fileView.js
+++ b/module/web/static/js/views/fileView.js
@@ -13,13 +13,11 @@ define(['jquery', 'backbone', 'underscore', 'app', 'views/abstract/itemView'],
},
initialize: function() {
- this.model.on('change', this.render, this);
- this.model.on('remove', this.destroy, this);
+ this.listenTo(this.model, 'change', this.render);
+ this.listenTo(this.model, 'remove', this.destroy);
},
onDestroy: function() {
- this.model.off('change', this.render);
- this.model.off('remove', this.destroy);
},
render: function() {