summaryrefslogtreecommitdiff
path: root/R/app.R
diff options
context:
space:
mode:
authorNaeem Model <me@nmode.ca>2023-06-25 01:57:27 +0000
committerNaeem Model <me@nmode.ca>2023-06-25 01:57:27 +0000
commiteac4c3ce4344ec3a4b515250cb7b3aa18ce9db8e (patch)
tree819dcea1a9e486eab89db715fb138fccc79443a6 /R/app.R
parent4e1ddb4ade80ac5193e08fea66c594600ab8b324 (diff)
Remove 'shinyjs' dependency
Diffstat (limited to 'R/app.R')
-rw-r--r--R/app.R2
1 files changed, 0 insertions, 2 deletions
diff --git a/R/app.R b/R/app.R
index 8048fa4..64b5d2a 100644
--- a/R/app.R
+++ b/R/app.R
@@ -6,8 +6,6 @@ app <- function() {
stop("The package 'shiny' must be installed to launch the Rnaught web application.")
if (!requireNamespace("shinyBS", quietly=TRUE))
stop("The package 'shinyBS' must be installed to launch the Rnaught web application.")
- if (!requireNamespace("shinyjs", quietly=TRUE))
- stop("The package 'shinyjs' must be installed to launch the Rnaught web application.")
shiny::shinyApp(ui(), server)
}