Skip to content

Commit

Permalink
fixed #2695
Browse files Browse the repository at this point in the history
  • Loading branch information
vakata committed Feb 19, 2023
1 parent c68e51d commit 5bac2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jstree.checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@
};
this.delete_node = function (obj) {
if(this.settings.checkbox.tie_selection || $.vakata.is_array(obj)) {
return parent.delete_node(obj);
return parent.delete_node.call(this, obj);
}
var tmp, k, l, c = false;
obj = this.get_node(obj);
Expand Down

0 comments on commit 5bac2c7

Please sign in to comment.