fix enforced password for share in IE8
This commit is contained in:
parent
55e1226dfe
commit
0a589d938c
|
@ -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 !== '') {
|
||||
|
|
Loading…
Reference in New Issue