This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-editor.git
commit 4f918e5ff9e7394a00703ef1cdee0373b670133c Author: Sandro Boehme <[email protected]> AuthorDate: Wed Sep 23 12:32:42 2015 +0000 Resource Editor: Fixed bug on rename of a node. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1704832 13f79535-47bb-0310-9956-ffa450edef68 --- .../libs/sling/resource-editor-static-content/js/tree/JSTreeAdapter.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/SLING-INF/libs/sling/resource-editor-static-content/js/tree/JSTreeAdapter.js b/src/main/resources/SLING-INF/libs/sling/resource-editor-static-content/js/tree/JSTreeAdapter.js index bd0a09d..90df484 100644 --- a/src/main/resources/SLING-INF/libs/sling/resource-editor-static-content/js/tree/JSTreeAdapter.js +++ b/src/main/resources/SLING-INF/libs/sling/resource-editor-static-content/js/tree/JSTreeAdapter.js @@ -70,6 +70,7 @@ $(document).ready(function() { "check_callback" : true, multiple: true, animation: 600, + 'dblclick_toggle': false, 'data' : { 'url' : function (liJson) { // initial call for the root element @@ -158,6 +159,7 @@ $(document).ready(function() { }).on('keydown.jstree', 'a.jstree-anchor', function (e) { treeController.configureKeyListeners(e); }).on('select_node.jstree', function (e, data) { + //noop ; }).on('after_open.jstree', function(e, data){ treeController.afterOpen(data.node); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
