From 8179bb6f9df1623804579d701409d22f6466c106 Mon Sep 17 00:00:00 2001 From: "Jurjen N. E. Bos" Date: Fri, 5 Nov 2021 17:05:05 +0100 Subject: [PATCH] Bug fix for issue #424 Disclaimer: I am only playing with this for an hour or so. But I do think that I just fixed no less than three issues: #424 and two issues that appear to be the same (@278 and #163). But I tested on only one machine. --- src/html5sortable.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/html5sortable.ts b/src/html5sortable.ts index c9ed92c2..b69a895a 100644 --- a/src/html5sortable.ts +++ b/src/html5sortable.ts @@ -421,6 +421,7 @@ export default function sortable (sortableElements, options: configuration|objec dragging.classList.remove(options.draggingClass) attr(dragging, 'aria-grabbed', 'false') + dragging.style.display = "" if (dragging.getAttribute('aria-copied') === 'true' && data(dragging, 'dropped') !== 'true') { dragging.remove()