link_add = function(id) {
tags$a(
id = id,
href = "#",
class = "action-button link_add",
`data-val` = 0,
list(shiny::icon("plus"), "")
)
}
link_remove = function(id) {
tags$a(
id = id,
href = "#",
class = "action-button link_remove",
`data-val` = 0,
list(shiny::icon("times"), "")
)
}
ui_row = function(...) {
tags$div(
class = "ui grid",
tags$div(
class = "row",
...
)
)
}
ui_col = function(width, ...) {
opts = c("one", "two", "three", "four", "five", "six", "seven", "eight",
"nine", "ten", "eleven", "twelve", "thirtheen", "fourteen",
"fifteen", "sixteen")
width = opts[width]
tags$div(
class = paste(width, "wide column"),
...
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.