diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-09 15:32:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 15:32:07 +0200 |
commit | 6957e1f39c68886b15b6b62ca45c89282ab94e7d (patch) | |
tree | 30a5bb8c6cc84e740d169a071fa6a42135117e07 | |
parent | 022a45faeda896f456414ca9a2a937ba6d3d579d (diff) | |
download | nextcloud-server-6957e1f39c68886b15b6b62ca45c89282ab94e7d.tar.gz nextcloud-server-6957e1f39c68886b15b6b62ca45c89282ab94e7d.zip |
Revert "[stable14] in 14 the click action gets lost in the Backbone view."
-rw-r--r-- | apps/systemtags/js/filesplugin.js | 4 | ||||
-rw-r--r-- | apps/systemtags/js/systemtagsinfoviewtoggleview.js | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/systemtags/js/filesplugin.js b/apps/systemtags/js/filesplugin.js index ca706775121..fc2a227b5be 100644 --- a/apps/systemtags/js/filesplugin.js +++ b/apps/systemtags/js/filesplugin.js @@ -49,10 +49,10 @@ systemTagsInfoViewToggleView.$el.detach(); }); systemTagsInfoViewToggleView.listenTo(detailView, 'post-render', function() { - var clicker = _.bind(systemTagsInfoViewToggleView.click, systemTagsInfoViewToggleView); - systemTagsInfoViewToggleView.$el.click(clicker); detailView.$el.find('.file-details').append(systemTagsInfoViewToggleView.$el); }); + + return; } }); } diff --git a/apps/systemtags/js/systemtagsinfoviewtoggleview.js b/apps/systemtags/js/systemtagsinfoviewtoggleview.js index fabff56d031..13a48e49cfb 100644 --- a/apps/systemtags/js/systemtagsinfoviewtoggleview.js +++ b/apps/systemtags/js/systemtagsinfoviewtoggleview.js @@ -62,6 +62,7 @@ * references the SystemTagsInfoView to associate to this toggle view. */ initialize: function(options) { + var self = this; options = options || {}; this._systemTagsInfoView = options.systemTagsInfoView; |