Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# master

* Add support for `shiny::registerInputHandler` in Shiny inputs; [pull 26](https://github.com/react-R/reactR/pull/26)

# reactR 0.4.0

* Add Shiny input scaffold and functionality; [tutorial](https://react-r.github.io/reactR/articles/intro_inputs.html) and [pull 22](https://github.com/react-R/reactR/pull/22) thanks @alandipert
Expand Down
5 changes: 5 additions & 0 deletions inst/www/react-tools/react-tools.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion inst/www/react-tools/react-tools.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions srcjs/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export function reactShinyInput(selector,
find(scope) {
return $(scope).find(selector);
}
getType(el) {
return name;
}
getValue(el) {
return this.getInputValue(el);
}
Expand Down