diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-06-22 16:13:45 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-06-22 16:13:45 +0200 |
commit | 69ab810005b0edc588ea26620be48a44d3d41574 (patch) | |
tree | eddf3a5443d9d68dff49325b7dda9dc9980e0e2f /js | |
parent | 3c19e66151e5a18359668fdcd14cede299ae4129 (diff) | |
download | nextcloud-server-69ab810005b0edc588ea26620be48a44d3d41574.tar.gz nextcloud-server-69ab810005b0edc588ea26620be48a44d3d41574.zip |
fix checkboxes in filebrowser in konqueror
Diffstat (limited to 'js')
-rwxr-xr-x | js/lib_drag.js | 2 |
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); |