Skip to content

Commit

Permalink
fix enforced password for share in IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
MorrisJobke committed Mar 26, 2015
1 parent 55e1226 commit 0a589d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/js/share.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 !== '') {
Expand Down

0 comments on commit 0a589d9

Please sign in to comment.