R/tippy.R

Defines functions my_tippy

#' @name Custom tippy widget functions
#'
#' @inheritParams tippy::tippy
#'
#' @return a tippy
#' @export
#' @importFrom tippy tippy
#'
#' @noRd
#'
my_tippy <- function(
  tooltip,
  text
) {
  tippy::tippy(
    tooltip = tooltip,
    text = text,
    placement = "right-end",
    interactive = "true",
    allowHTML = "true"
  )
}
Metropolitan-Council/service.allocation.viz documentation built on July 29, 2023, 6:56 a.m.