fix enforced password for share in IE8

This commit is contained in:
Morris Jobke 2015-03-26 11:55:50 +01:00
parent 55e1226dfe
commit 0a589d938c
1 changed files with 5 additions and 0 deletions

View File

@ -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 !== '') {