hidden() doesn't work on a tagList() containing an htmlDependency()
cpsievert opened this issue · 3 comments
cpsievert commented
First reported in rstudio/shiny#3670
Here's a minimal reprex
library(htmltools)
shinyjs::hidden(
tagList(
div(),
htmlDependency(name = "foo", src = "", version = "1.0")
)
)
daattali commented
Thanks for the report!
daattali commented
Fixed in both hidden()
and disabled()
. Please install latest github version and confirm it works in your usecase @gitdemont
gitdemont commented
It perfectly works ! THANKS 👍