R/use_circletype.R

Defines functions use_circletype

Documented in use_circletype

#' Load CircleType dependencies
#'
#' @return Load dependencies
#' @export
#'
#' @examples
#' if (interactive()) {
#' library(shiny)
#'
#' ui <- fluidPage(
#'   use_circletype(), # load dependencies
#'   circletype(h1("this is a title", id = "test_h1"), dir = -1, radius = 200)
#' )
#'
#' server <- function(input, output, session) {}
#'
#' shinyApp(ui, server)
#' }

use_circletype <- function() {

  shiny::singleton(
    shiny::tags$head(
      shiny::tags$script(
        src = "circletype-assets/circletype.min.js"
      ),
      shiny::tags$script(
        src = "custom-assets/destroy.js"
      )
    )
  )
}

Try the circletyper package in your browser

Any scripts or data that you put into this service are public.

circletyper documentation built on Sept. 21, 2022, 9:13 a.m.