Skip to content

Commit

Permalink
explicit mention package
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaSeep committed Nov 5, 2024
1 parent 833bd25 commit 6fa9c32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions program/shinyApp/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ server <- function(input,output,session){
# Start the tour when the "Start Tour" button is clicked
observeEvent(input$start_tour, {
print("Star Tour")
runjs("document.querySelector('.driver-close-btn').click();")
shinyjs::runjs("document.querySelector('.driver-close-btn').click();")
guide$init()$start()
})

observeEvent(input$guide_cicerone_next, {
print("Next")
runjs("document.querySelector('.driver-close-btn').click();")
shinyjs::runjs("document.querySelector('.driver-close-btn').click();")
showTab(inputId = "tabsetPanel1",target = "Data selection",select = T)
#showTab(inputId = "tabsetPanel1", target = "Data selection")
})
Expand Down

0 comments on commit 6fa9c32

Please sign in to comment.