Browse Source

Fix: change mouseclick trigger to mouseup from mousedown

- fix inconsistent state between checkboxes and selected row when mousedown was inside boundary but mouseup was outside
Robert Zollner 6 years ago
parent
commit
37744b3c43
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/js/jquery.finder.js

+ 1 - 1
web/js/jquery.finder.js

@@ -54,7 +54,7 @@
             ctrlClass: "selected-ctrl",
             triggerUpdate: "finderSelectUpdate",
             children: false,
-            event: "mousedown",
+            event: "mouseup",
             cursor: "pointer",
             dragEvent: "mouseenter",
             enableClickDrag: true,