mirror of
https://github.com/pretix/pretix.git
synced 2026-05-11 16:13:59 +00:00
Remove JavaScript lambda function (not supported in IE)
This commit is contained in:
@@ -23,7 +23,7 @@ $(function () {
|
||||
handle: ".dnd-sort-handle",
|
||||
onSort: function (evt){
|
||||
var container = $(evt.to),
|
||||
ids = container.find("[data-dnd-id]").toArray().map(e => e.dataset.dndId);
|
||||
ids = container.find("[data-dnd-id]").toArray().map(function (e) { return e.dataset.dndId; });
|
||||
|
||||
hideArrows(container);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user