summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2010-06-22 16:13:45 +0200
committerRobin Appelman <icewind1991@gmail.com>2010-06-22 16:13:45 +0200
commit69ab810005b0edc588ea26620be48a44d3d41574 (patch)
treeeddf3a5443d9d68dff49325b7dda9dc9980e0e2f /js
parent3c19e66151e5a18359668fdcd14cede299ae4129 (diff)
downloadnextcloud-server-69ab810005b0edc588ea26620be48a44d3d41574.tar.gz
nextcloud-server-69ab810005b0edc588ea26620be48a44d3d41574.zip
fix checkboxes in filebrowser in konqueror
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);