summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rwxr-xr-xjs/lib_drag.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/lib_drag.js b/js/lib_drag.js
index bc6a8610500..5e6ae8ccadc 100755
--- a/js/lib_drag.js
+++ b/js/lib_drag.js
@@ -258,7 +258,6 @@ document.drag.update=function(event){
if(document.drag.active && document.drag.node){
document.drag.node.drag.update.call(document.drag.node,event);
}
- return false;
}
/**
@@ -269,7 +268,6 @@ document.drag.stop=function(event){
if(document.drag.active && document.drag.node){
document.drag.node.drag.stop.call(document.drag.node,event);
}
- return false;
}
document.events.add(document,'onmousemove',document.drag.update);
document.events.add(document,'onmouseup',document.drag.stop);