From 737be1a10f64200483560bf8ce533d74e1c3b7b0 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 13 May 2014 15:27:56 +0200 Subject: [PATCH] move expire message to the bottom --- core/js/share.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/js/share.js b/core/js/share.js index 963c11db79..d5a6c7eca3 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -228,7 +228,7 @@ OC.Share={ defaultExpireMessage = t('core', 'By default the public link will expire after {days} days', {'days': oc_appconfig.core.defaultExpireDate}) + '
'; } } - html += '
'+defaultExpireMessage+'
'; + html += ''; html += ''; @@ -250,6 +250,7 @@ OC.Share={ html += '
'; html += ''; html += ''; + html += '
'+defaultExpireMessage+'
'; html += '
'; dropDownEl = $(html); dropDownEl = dropDownEl.appendTo(appendTo);