Update '12/dragable.js'

master
Max Lehmann 4 years ago
parent 62e6b91dc1
commit ff4fc26784

@ -73,8 +73,8 @@ makeDragable('#shell_03header', '#shell_03')
/*sets offset parameters and starts listening for mouse-move*/
function startDrag2(x) {
x.preventDefault2();
x.stopPropagation2();
x.preventDefault();
x.stopPropagation();
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.preventDefault2();
x.stopPropagation2();
x.preventDefault();
x.stopPropagation();
if(dragObj2 == null) {
return; // if there is no object being dragged then do nothing

Loading…
Cancel
Save