[Pkg-owncloud-commits] [owncloud] 94/172: move expire message to the bottom
David Prévot
taffit at moszumanska.debian.org
Sun May 18 20:09:44 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit 737be1a10f64200483560bf8ce533d74e1c3b7b0
Author: Bjoern Schiessle <schiessle at owncloud.com>
Date: Tue May 13 15:27:56 2014 +0200
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 963c11d..d5a6c7e 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}) + '<br/>';
}
}
- html += '<div id="defaultExpireMessage">'+defaultExpireMessage+'</div>';
+
html += '<input id="linkText" type="text" readonly="readonly" />';
html += '<input type="checkbox" name="showPassword" id="showPassword" value="1" style="display:none;" /><label for="showPassword" style="display:none;">'+t('core', 'Password protect')+'</label>';
@@ -250,6 +250,7 @@ OC.Share={
html += '<div id="expiration">';
html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>';
html += '<input id="expirationDate" type="text" placeholder="'+t('core', 'Expiration date')+'" style="display:none; width:90%;" />';
+ html += '<div id="defaultExpireMessage">'+defaultExpireMessage+'</div>';
html += '</div>';
dropDownEl = $(html);
dropDownEl = dropDownEl.appendTo(appendTo);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list