Skip to content
Snippets Groups Projects
Commit e287e142 authored by Anika Henke's avatar Anika Henke
Browse files

fixed files being unselectable after upload (FS#2591)

parent 182ac905
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,7 @@ qq.extend(qq.FileUploaderExtended.prototype, {
if (result.success){
qq.addClass(item, this._classes.success);
$link = '<a href="' + result.link + '" name="h_:' + result.id + '" class="select">' + nameInput.value + '</a>';
$link = '<a href="' + result.link + '" id="h_:' + result.id + '" class="select">' + nameInput.value + '</a>';
jQuery(fileElement).html($link);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment