aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/css/share.scss4
-rw-r--r--core/js/sharedialogresharerinfoview.js5
2 files changed, 9 insertions, 0 deletions
diff --git a/core/css/share.scss b/core/css/share.scss
index 2ea80b146b5..2e1c99b6f41 100644
--- a/core/css/share.scss
+++ b/core/css/share.scss
@@ -161,6 +161,10 @@ a {
padding: 6px 4px;
}
+.resharerInfoView.subView {
+ position: relative;
+}
+
#defaultExpireMessage, .reshare {
/* fix shared by text going out of box */
white-space: normal;
diff --git a/core/js/sharedialogresharerinfoview.js b/core/js/sharedialogresharerinfoview.js
index a82b495bdcc..201484c52a8 100644
--- a/core/js/sharedialogresharerinfoview.js
+++ b/core/js/sharedialogresharerinfoview.js
@@ -100,6 +100,11 @@
$this.avatar($this.data('username'), 32);
});
+ this.$el.find('.reshare').contactsMenu(
+ this.model.getReshareOwner(),
+ OC.Share.SHARE_TYPE_USER,
+ this.$el);
+
return this;
},