mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-25 00:59:42 +02:00
hardcoded parentElement by accident
so that's why it doesn't work on other pages. derp
This commit is contained in:
@@ -42,7 +42,7 @@ define('admin/selectable', function() {
|
||||
|
||||
return $('<div class="selector" />')
|
||||
.css('opacity', 0.65 )
|
||||
.appendTo('.tag-list');
|
||||
.appendTo(parentElement);
|
||||
})
|
||||
.drag(function(ev, dd){
|
||||
$(dd.proxy).css({
|
||||
@@ -54,7 +54,7 @@ define('admin/selectable', function() {
|
||||
})
|
||||
.drag('end',function(ev, dd){
|
||||
$(dd.proxy).remove();
|
||||
})
|
||||
});
|
||||
|
||||
elementsToSelect
|
||||
.addClass('selection')
|
||||
|
||||
Reference in New Issue
Block a user