diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-02 11:37:25 +0100 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-02 18:30:38 +0100 |
commit | f556c58c22405945263bc6debfa6a424e2c601cb (patch) | |
tree | 648f879e3f46214bd8e0c36f9d8b7b0971d9cbdb /core/js/sharedialogview.js | |
parent | 7da3ba3f91f561da664fc601b29cd7948f876f3f (diff) | |
download | nextcloud-server-f556c58c22405945263bc6debfa6a424e2c601cb.tar.gz nextcloud-server-f556c58c22405945263bc6debfa6a424e2c601cb.zip |
remove 'send mail notification' option from sharing, replaced by send-by-mail feature
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'core/js/sharedialogview.js')
-rw-r--r-- | core/js/sharedialogview.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/core/js/sharedialogview.js b/core/js/sharedialogview.js index 3b2a7480c47..b277a1226c7 100644 --- a/core/js/sharedialogview.js +++ b/core/js/sharedialogview.js @@ -28,7 +28,6 @@ '<div class="shareeListView subView"></div>' + '<div class="linkShareView subView"></div>' + '<div class="expirationView subView"></div>' + - '<div class="mailView subView"></div>' + '<div class="loading hidden" style="height: 50px"></div>'; var TEMPLATE_REMOTE_SHARE_INFO = @@ -70,9 +69,6 @@ /** @type {object} **/ shareeListView: undefined, - /** @type {object} **/ - mailView: undefined, - events: { 'input .shareWithField': 'onShareWithFieldChanged' }, @@ -109,8 +105,7 @@ resharerInfoView: 'ShareDialogResharerInfoView', linkShareView: 'ShareDialogLinkShareView', expirationView: 'ShareDialogExpirationView', - shareeListView: 'ShareDialogShareeListView', - mailView: 'ShareDialogMailView' + shareeListView: 'ShareDialogShareeListView' }; for(var name in subViews) { @@ -383,9 +378,6 @@ this.shareeListView.$el = this.$el.find('.shareeListView'); this.shareeListView.render(); - this.mailView.$el = this.$el.find('.mailView'); - this.mailView.render(); - this.$el.find('.hasTooltip').tooltip(); return this; |