Nothing
iconButton <- function(
id,
label,
class = NULL,
icon = "shuffle",
icon_title = "Random",
...
) {
tags$button(
id = id,
class = "btn btn-default action-button",
class = class,
bsicons::bs_icon("shuffle", title = "Random"),
label
)
}
shuffleButton <- function(id, label, class = NULL) {
iconButton(id, label, class = c("shuffle-button", class))
}
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.