You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
onStart: A function that will be called before the app is actually
run. This is only needed for ‘shinyAppObj’, since in the
‘shinyAppDir’ case, a ‘global.R’ file can be used for this
purpose.
I suspect that where it says ‘shinyAppObj’ it should actually be ‘shinyApp’ ?
The text was updated successfully, but these errors were encountered:
The ‘shinyAppObj’ case refers to the possibility of defining a shiny app without using a file based app format (No app.R or ui.R and server.R files) via shinyApp().
The file based formats are handled by shinyAppDir() or shinyAppFile() which don't provide an onStart argument. However, they still result in a shiny.appobj.
In the help page for
shinyApp
it saysI suspect that where it says ‘shinyAppObj’ it should actually be ‘shinyApp’ ?
The text was updated successfully, but these errors were encountered: