Created
June 22, 2017 12:35
-
-
Save jobonaf/c5cb2773f2aa623a0ddf9b6d25448008 to your computer and use it in GitHub Desktop.
shiny app redirection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server <- function(input, output, session) {} | |
ui <- fluidPage(singleton(tags$head(tags$script('window.location.replace("https://sdati.arpae.it/calicantus-intro");')))) | |
shinyApp(ui = ui, server = server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ultra-compact Shiny app to redirect to another URL (in the gist the URL is
https://sdati.arpae.it/calicantus-intro
)