Closed daattali closed 1 year ago
When autoWaiter() is called multiple times, the page has javascript errors Uncaught SyntaxError: Identifier 'auto' has already been declared. Example:
autoWaiter()
Uncaught SyntaxError: Identifier 'auto' has already been declared
library(shiny) ui <- fluidPage( waiter::autoWaiter(), waiter::autoWaiter() ) server <- function(input, output, session) {} shinyApp(ui, server)
This might be a silly example, but when building a real shiny app with multiple modules, it's possible for different modules that don't know about each other's dependencies to each make a call to autoWaiter().
When
autoWaiter()
is called multiple times, the page has javascript errorsUncaught SyntaxError: Identifier 'auto' has already been declared
. Example:This might be a silly example, but when building a real shiny app with multiple modules, it's possible for different modules that don't know about each other's dependencies to each make a call to
autoWaiter()
.