Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Imports:
shinyWidgets,
sortable,
stringr,
yaml
yaml,
shinybusy
Remotes: safetyGraphics/safetyCharts
VignetteBuilder: knitr
Roxygen: list(markdown = TRUE)
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ importFrom(shiny,dataTableOutput)
importFrom(shiny,renderDataTable)
importFrom(shinyWidgets,progressBar)
importFrom(shinyWidgets,updateProgressBar)
importFrom(shinybusy,add_busy_spinner)
importFrom(shinyjs,addClass)
importFrom(shinyjs,delay)
importFrom(shinyjs,disable)
Expand Down
4 changes: 3 additions & 1 deletion R/mod_safetyGraphicsUI.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
#' @param standards a list of information regarding data standards. Each list item should use the format returned by safetyGraphics::detectStandard.
#'
#' @importFrom shinyjs useShinyjs
#'
#' @importFrom shinybusy add_busy_spinner
#'
#' @export

safetyGraphicsUI <- function(id, meta, domainData, mapping, standards){
Expand All @@ -32,6 +33,7 @@ safetyGraphicsUI <- function(id, meta, domainData, mapping, standards){
#app UI using calls to modules
ui<-tagList(
shinyjs::useShinyjs(),
add_busy_spinner(spin = "atom", position="bottom-right"),
tags$head(
tags$style(app_css),
tags$link(
Expand Down