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

declare variable id in local scope, fixes #843

parent dcccfab0
No related branches found
No related tags found
No related merge requests found
......@@ -673,7 +673,7 @@ const Forum = {
// jQuery('li[data-id=' + topic_id + '] a.tooltip2').hideAjaxNotification();
// 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();
}
......
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