Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Safari compatibility #12

Open
fmmattioni opened this issue Apr 8, 2021 · 0 comments
Open

Safari compatibility #12

fmmattioni opened this issue Apr 8, 2021 · 0 comments

Comments

@fmmattioni
Copy link

Has anyone noticed an issue when using the package in Safari?

reprex:

library(shiny)
library(tuicalendr)

ui <- fluidPage(
  calendarOutput(outputId = "calendar")  
)

server <- function(input, output, session) {
  output$calendar <- renderCalendar({
    calendar(defaultView = "month", useNav = TRUE) %>% 
      add_schedule(
        title = "R - introduction", 
        body = "What is R?",
        start = sprintf("%s 08:00:00", Sys.Date()),
        end = sprintf("%s 12:30:00", Sys.Date()),
        category = "time"
      )
  })
}

shinyApp(ui, server)
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant