Skip to content
Snippets Groups Projects
Commit 758401ac authored by Elmar Ludwig's avatar Elmar Ludwig
Browse files

declare variable id in local scope, fixes #843

parent 843d61f1
No related branches found
No related tags found
No related merge requests found
...@@ -673,7 +673,7 @@ const Forum = { ...@@ -673,7 +673,7 @@ const Forum = {
// jQuery('li[data-id=' + topic_id + '] a.tooltip2').hideAjaxNotification(); // jQuery('li[data-id=' + topic_id + '] a.tooltip2').hideAjaxNotification();
// remove all pasted entries, they are now elsewhere // remove all pasted entries, they are now elsewhere
for (id in STUDIP.Forum.clipboard) { for (var id in STUDIP.Forum.clipboard) {
jQuery('li[data-id=' + id + ']').remove(); jQuery('li[data-id=' + id + ']').remove();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment