Merge pull request #4647 from owncloud/fix_4619

Workaround for IE 9 & 10 for clicking filelist after adding new item
remotes/origin/stable6
Thomas Müller 12 years ago
commit 956a2335ad
  1. 3
      apps/files/js/file-upload.js

@ -344,6 +344,9 @@ $(document).ready(function() {
}
var li=form.parent();
form.remove();
/* workaround for IE 9&10 click event trap, 2 lines: */
$('input').first().focus();
$('#content').focus();
li.append('<p>'+li.data('text')+'</p>');
$('#new>a').click();
});

Loading…
Cancel
Save