Fixed not preventing default selection of text when selecting nodes

This commit is contained in:
jos 2018-10-17 15:31:42 +02:00
parent e08250c3cb
commit 9c23ca9791
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ https://github.com/josdejong/jsoneditor
when deleting a node.
- Fixed duplicate and remove of the action menu of multiple selected
nodes not working.
- Fixed not preventing default selection of text when selecting nodes.
## 2018-10-08, version 5.24.7

View File

@ -1316,6 +1316,7 @@ treemode._onMultiSelectStart = function (event) {
});
}
event.preventDefault();
};
/**