daattali / shinyalert

🗯️ Easily create pretty popup messages (modals) in Shiny
https://daattali.com/shiny/shinyalert-demo/
Other
241 stars 26 forks source link

Alert box cuts off text when string is too long without whitespace #53

Closed daattali closed 3 years ago

daattali commented 3 years ago

Example:

library(shiny)

ui <- fluidPage(

)

server <- function(input, output, session) {
  shinyalert::shinyalert(text = "one,two,three,four,five,six,seven,eight,nine,ten,eleven,twelve,thirteen,fourteen,fifteen")
}

shinyApp(ui, server)

image