diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-08-25 16:07:14 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-16 07:23:27 +0200 |
commit | c17d022ca42dda31f321276f2c4973ca2e43c8a4 (patch) | |
tree | 1f6b396a40bda268ab609e263edf6c493325fc97 /core/js/sharedialogview.js | |
parent | f62a3be59069510f4afa479316a665011cd014f5 (diff) | |
download | nextcloud-server-c17d022ca42dda31f321276f2c4973ca2e43c8a4.tar.gz nextcloud-server-c17d022ca42dda31f321276f2c4973ca2e43c8a4.zip |
started to implement sharee list view. not completed yet, do not cry please.
Diffstat (limited to 'core/js/sharedialogview.js')
-rw-r--r-- | core/js/sharedialogview.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/js/sharedialogview.js b/core/js/sharedialogview.js index 8cd68962d42..2348c14bb88 100644 --- a/core/js/sharedialogview.js +++ b/core/js/sharedialogview.js @@ -22,8 +22,7 @@ '</div>' + // FIXME: find a good position for remoteShareInfo '{{{remoteShareInfo}}}' + - '<ul id="shareWithList">' + - '</ul>' + + '<div class="shareeListView"></div>' + '<div class="linkShareView"></div>' + '<div class="expirationView"></div>' ; @@ -88,7 +87,8 @@ var subViews = { resharerInfoView: 'ShareDialogResharerInfoView', linkShareView: 'ShareDialogLinkShareView', - expirationView: 'ShareDialogExpirationView' + expirationView: 'ShareDialogExpirationView', + shareeListView: 'ShareDialogShareeListView' }; for(var name in subViews) { @@ -117,6 +117,9 @@ this.expirationView.$el = this.$el.find('.expirationView'); this.expirationView.render(); + this.shareeListView.$el = this.$el.find('.shareeListView'); + this.shareeListView.redner(); + this.$el.find('.hasTooltip').tooltip(); if(this.configModel.areAvatarsEnabled()) { this.$el.find('.avatar').avatar(this.model.getReshareOwner, 32); |