Skip to content
Snippets Groups Projects
Commit 956a2335 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #4647 from owncloud/fix_4619

Workaround for IE 9 & 10 for clicking filelist after adding new item
parents 2cdde7a5 f4ec5182
Branches
No related tags found
No related merge requests found
......@@ -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();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment