Compare commits

..

2 Commits

2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
Package: AVSDevR.HTMLUtils
Title: Utility Functions For Modifying R HTML Elements
Version: 0.0.4
Version: 0.0.5
Authors@R:
person("Craig", "Williams", , "craig@avsdev.uk", role = c("aut", "cre"))
Description: Collection of utility functions for modifying HTML markup of

View File

@@ -171,7 +171,9 @@ htmlRemoveBoxTitle <- function(box, removeHeader = FALSE) {
} else {
htmltools::tagQuery(box)$
find(".box-title")$
replace(htmltools::tags$span(htmltools::HTML("&nbsp;")))$
replace(htmltools::tags$span(
class = "empty-box-title", htmltools::HTML("&nbsp;")
))$
allTags()
}
}