We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to save a collection of widgets (perhaps via crosstalk::bscols(), htmltools::tagList(), etc) this error message could be improved:
crosstalk::bscols()
htmltools::tagList()
library(plotly) library(leaflet) library(crosstalk) library(htmlwidgets) tags <- tagList(plot_ly(), leaflet()) saveWidget(tags, "index.html")
Error in if (!(package %in% dev_packages())) { : argument is of length zero
In fact, we could even make this work (and throw a warning if selfcontained = TRUE), as I've proposed in #309
selfcontained = TRUE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to save a collection of widgets (perhaps via
crosstalk::bscols()
,htmltools::tagList()
, etc) this error message could be improved:In fact, we could even make this work (and throw a warning if
selfcontained = TRUE
), as I've proposed in #309The text was updated successfully, but these errors were encountered: