Merge pull request #14166 from nextcloud/enhancement/noid/sharing-tab-plugins
Allow attaching plugins to the ShareTabView and trigger event on render
This commit is contained in:
commit
53e8957a55
1 changed files with 6 additions and 0 deletions
|
@ -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');
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue