Nothing
shinyUI(
fluidPage(
tags$fieldset(
tags$legend(
h1(style = "display: inline-block;", "Metro UI colors"),
helpText(
style = "display: inline-block;",
"(hover the buttons to see the color names)"
)
),
do.call(tagList, apply(colorsChunks, 1L, function(chunk){
div(multiActionButton(
rotate = TRUE, bg = "black", fg = "white", icon = "plus",
direction = "right",
subButtons = lapply(chunk, function(color){
subButton(
color, bg = color, icon = "plus", tooltip = color
)
})
))
}))
),
tags$script(HTML("$('.multi-action>button').addClass('active')"))
)
)
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.