summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-03-26 11:55:50 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-03-26 20:05:41 +0100
commit0a589d938ce89adae7119d6f84f151644bdf166f (patch)
treeab5f973ed2e3c5c5490196ed35a38452829551a4 /core
parent55e1226dfee2778d92e7dbaf9e907f20a80c073b (diff)
downloadnextcloud-server-0a589d938ce89adae7119d6f84f151644bdf166f.tar.gz
nextcloud-server-0a589d938ce89adae7119d6f84f151644bdf166f.zip
fix enforced password for share in IE8
Diffstat (limited to 'core')
-rw-r--r--core/js/share.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/js/share.js b/core/js/share.js
index 061ac6affa2..b9b4a5bc754 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -989,6 +989,11 @@ $(document).ready(function() {
});
} else {
$('#linkPass').slideToggle(OC.menuSpeed);
+ // TODO drop with IE8 drop
+ if(html.hasClass('ie8')) {
+ $('#linkPassText').attr('placeholder', null);
+ $('#linkPassText').val('');
+ }
$('#linkPassText').focus();
}
if (expireDateString !== '') {