Skip to content

Commit

Permalink
Refactoring earnaud#4
Browse files Browse the repository at this point in the history
  • Loading branch information
earnaud committed Jul 15, 2020
1 parent 45222ea commit 0e2fedb
Show file tree
Hide file tree
Showing 87 changed files with 3,426 additions and 4,256 deletions.
Binary file modified .RData
Binary file not shown.
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ importFrom(shinyAce,updateAceEditor)
importFrom(shinyBS,bsCollapse)
importFrom(shinyBS,bsCollapsePanel)
importFrom(shinyBS,bsTooltip)
importFrom(shinyBS,tipify)
importFrom(shinyBS,updateCollapse)
importFrom(shinyFiles,getVolumes)
importFrom(shinyFiles,parseDirPath)
Expand Down
6 changes: 3 additions & 3 deletions R/aboutUI-module.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ aboutUI <- function(id) {
tags$p("The following people and parties have worked upstream of
MetaShARK dev team to provide the fundamentals united in
the present tool."),
uiOutput(ns("actors")),
uiOutput(NS(id, "actors")),
# Informatics
tags$h2("Computer material"),
tags$p("The following references will lead the user to the source
of tools and methods reused in MetaShARK."),
uiOutput(ns("informatics")),
uiOutput(NS(id, "informatics")),
# Sci litt
tags$h2("Literature"),
tags$p("MetaShARK is based on the following papers and articles
concerning mainly ecological metadata."),
uiOutput(ns("ecology"))
uiOutput(NS(id, "ecology"))
)
}
4 changes: 2 additions & 2 deletions R/documentation-module.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ docUI <- function(id) {
5,
wellPanel(
shinyTree::shinyTree(
outputId = ns("tree"),
outputId = NS(id, "tree"),
search = TRUE,
theme = "proton"
)
Expand All @@ -32,7 +32,7 @@ docUI <- function(id) {
7,
div(
id = "docPanel",
uiOutput(ns("doc"))
uiOutput(NS(id, "doc"))
)
)
)
Expand Down
Loading

0 comments on commit 0e2fedb

Please sign in to comment.