mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Remove JavaScript lambda function (not supported in IE)
This commit is contained in:
@@ -23,7 +23,7 @@ $(function () {
|
|||||||
handle: ".dnd-sort-handle",
|
handle: ".dnd-sort-handle",
|
||||||
onSort: function (evt){
|
onSort: function (evt){
|
||||||
var container = $(evt.to),
|
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);
|
hideArrows(container);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user