Neighbor highlighting via mouseover and click at the same time
1 |
storage_env <- new.env(hash = TRUE) |
|
2 |
|
|
3 |
.onAttach <- function(libname, pkgname) { |
|
4 | 1 |
shiny::registerInputHandler("sigmajsParseJS", function(data, ...) { |
5 |
jsonlite::fromJSON(jsonlite::toJSON(data, auto_unbox = TRUE)) |
|
6 | 1 |
}, force = TRUE) |
7 |
}
|
|
8 |
|
|
9 |
.onLoad <- function(libname, pkgname) { |
|
10 |
shiny::registerInputHandler("sigmajsParseJS", function(data, ...) { |
|
11 |
jsonlite::fromJSON(jsonlite::toJSON(data, auto_unbox = TRUE)) |
|
12 |
}, force = TRUE) |
|
13 |
}
|
Read our documentation on viewing source code .