Merge pull request #10782 from nextcloud/fix/10774/deadtagaction

in 14 the click action gets lost in the Backbone view.
This commit is contained in:
Morris Jobke 2018-10-08 17:14:00 +02:00 committed by GitHub
commit c4ac9bcea2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -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;
}
});
}

View file

@ -56,7 +56,6 @@
* references the SystemTagsInfoView to associate to this toggle view.
*/
initialize: function(options) {
var self = this;
options = options || {};
this._systemTagsInfoView = options.systemTagsInfoView;