From d18da08a1a118344dd378855579baaea1f843011 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 15 Oct 2014 12:30:31 +0200 Subject: [PATCH] set password field placeholder back if passward was disabled --- core/js/share.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/js/share.js b/core/js/share.js index 5632ecba97..1de990f379 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -1025,6 +1025,7 @@ $(document).ready(function() { $loading.removeClass('hidden'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName).then(function() { $loading.addClass('hidden'); + $('#linkPassText').attr('placeholder', t('core', 'Choose a password for the public link')); }); } else { $('#linkPassText').focus();