From 3d19a0f3d6ba7ebe2044c41b7d5d93bd5a7947a5 Mon Sep 17 00:00:00 2001 From: Max Lehmann Date: Thu, 11 Jun 2020 14:10:43 +0200 Subject: [PATCH] Update '12/dragable.js' --- 12/dragable.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/12/dragable.js b/12/dragable.js index 9a88238..300129a 100644 --- a/12/dragable.js +++ b/12/dragable.js @@ -73,8 +73,8 @@ makeDragable('#shell_03header', '#shell_03'); /*sets offset parameters and starts listening for mouse-move*/ function startDrag2(x) { - x.preventDefault(); - x.stopPropagation(); + x.preventDefault2(); + x.stopPropagation2(); dragObj2 = document.querySelector(dragTarget2); dragObj2.style.position = "absolute"; let rect = dragObj2.getBoundingClientRect(); @@ -92,8 +92,8 @@ makeDragable('#shell_03header', '#shell_03'); /*Drag object*/ function dragObject2(x) { - x.preventDefault(); - x.stopPropagation(); + x.preventDefault2(); + x.stopPropagation2(); if(dragObj2 == null) { return; // if there is no object being dragged then do nothing