Nothing
hide_multiple_ids <- function(ids) {
stopifnot(is.character(ids))
for (i in seq_len(length(ids))) {
shinyjs::hide(ids[i])
}
}
show_multiple_ids <- function(ids) {
stopifnot(is.character(ids))
for (i in seq_len(length(ids))) {
shinyjs::show(ids[i])
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.