mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
feat(draggable): CSS selectors support in ignore_dragging
config opt
This commit is contained in:
@@ -350,7 +350,7 @@
|
||||
return !$(event.target).is(this.options.handle);
|
||||
}
|
||||
|
||||
return $.inArray(event.target.nodeName, this.options.ignore_dragging) >= 0;
|
||||
return $(event.target).is(this.options.ignore_dragging.join(', '));
|
||||
};
|
||||
|
||||
//jQuery adapter
|
||||
|
Reference in New Issue
Block a user