diff options
-rw-r--r-- | apps/files_sharing/js/sharetabview.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_sharing/js/sharetabview.js b/apps/files_sharing/js/sharetabview.js index 3944293d5c1..9b1176dbb9a 100644 --- a/apps/files_sharing/js/sharetabview.js +++ b/apps/files_sharing/js/sharetabview.js @@ -24,6 +24,11 @@ id: 'shareTabView', className: 'tab shareTabView', + initialize: function(name, options) { + OCA.Files.DetailTabView.prototype.initialize.call(this, name, options); + OC.Plugins.attach('OCA.Sharing.ShareTabView', this); + }, + template: function(params) { return TEMPLATE; }, @@ -80,6 +85,7 @@ this.$el.empty(); // TODO: render placeholder text? } + this.trigger('rendered'); } }); |