Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stla committed Nov 6, 2023
1 parent 67a0446 commit d826d4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: jsTreeR
Title: A Wrapper of the JavaScript Library 'jsTree'
Version: 2.3.3.9000
Version: 2.4.0
Authors@R: c(
person("Stéphane", "Laurent", , "laurent_step@outlook.fr", role = c("aut", "cre")),
person("jQuery contributors", role = c("ctb", "cph"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# jsTreeR 2.4.0 (2023-11-??)
# jsTreeR 2.4.0 (2023-11-07)

- New option `checkWithText`; it is a `TRUE`/`FALSE` option about the behavior
of the checkboxes: it controls whether the checkboxes must be (un)checked when
Expand Down
3 changes: 2 additions & 1 deletion inst/htmlwidgets/jstreer.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ HTMLWidgets.widget({
//get all input fields
var $searchFields = $searchBoxesSelector;
var searchValues = {};
//create for each input a key value pair with the key in the name attribute of the input (also being the index of the column)
//create for each input a key value pair with the key in the
// name attribute of the input (also being the column index)
$searchFields.each(function() {
var field = $(this);
searchValues[field.attr("name")] = field.val();
Expand Down

0 comments on commit d826d4a

Please sign in to comment.