The tree itself intercepts all clicks and adds its own logic to see if we follow the link or not. The condition in JSTree `if (!this.is_selected(obj) || this._data.core.selected.length !== 1)` is true when clicking ona link usually. However in this case it's invalidated. The this.select_node function is not called on click, and the link is not followed. |