From 7451a7cddd6a3bc08d538439ea6344e2cb2ce7db Mon Sep 17 00:00:00 2001 From: lindenkron Date: Wed, 12 Apr 2023 19:34:45 +0200 Subject: [PATCH] Revert .bottom = "auto" removal. --- lib.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.js b/lib.js index 3b4f4b3..3dc4f2e 100644 --- a/lib.js +++ b/lib.js @@ -2010,7 +2010,7 @@ function makeMiniDraggableElement(elmnt) { try { elmnt.dragElement = false; - // elmnt.style.bottom = "auto"; + elmnt.style.bottom = "auto"; elmnt.style.cursor = "grab"; elmnt.stashonmouseup = null; @@ -2174,7 +2174,7 @@ function makeDraggableElement(elmnt, absolute=false) { try { elmnt.dragElement = false; - // elmnt.style.bottom = "auto"; + elmnt.style.bottom = "auto"; elmnt.style.cursor = "grab"; elmnt.stashonmouseup = null; elmnt.stashonmousemove = null;