Closed SKPFCW closed 1 year ago
HI!
within the delete_node-Method there is a typo in triger -> trigger:
Instead of this.get_node(this._model.data[$.jstree.root].children[0], true).children('.jstree-anchor').triger('focus');
this.get_node(this._model.data[$.jstree.root].children[0], true).children('.jstree-anchor').triger('focus');
it should be this.get_node(this._model.data[$.jstree.root].children[0], true).children('.jstree-anchor').trigger('focus');
this.get_node(this._model.data[$.jstree.root].children[0], true).children('.jstree-anchor').trigger('focus');
Beside this, eslint marks quite a few errors in your code.
This will be fixed in 3.3.13 later today (it is already fixed, but there has not been a version released)
HI!
within the delete_node-Method there is a typo in triger -> trigger:
Instead of
this.get_node(this._model.data[$.jstree.root].children[0], true).children('.jstree-anchor').triger('focus');
it should be
this.get_node(this._model.data[$.jstree.root].children[0], true).children('.jstree-anchor').trigger('focus');
Beside this, eslint marks quite a few errors in your code.