summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/fileView.js
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-02-20 17:05:30 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-02-20 17:05:30 +0100
commitd4fabd4878050fdfea4e88dfe54eb90b4e35690f (patch)
treec276e53d6272a2fc9de57d01b4b4b7b66891a66e /module/web/static/js/views/fileView.js
parentmore animation for dashboard (diff)
downloadpyload-d4fabd4878050fdfea4e88dfe54eb90b4e35690f.tar.xz
tooltips and other improvements on webui
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() {