24 lines
597 B
R
24 lines
597 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/htmlBoxManipulation.R
|
|
\name{htmlAddBoxAttributes}
|
|
\alias{htmlAddBoxAttributes}
|
|
\title{Add attributes to .box elements (\code{shinydashboard::box})}
|
|
\usage{
|
|
htmlAddBoxAttributes(box, ...)
|
|
}
|
|
\arguments{
|
|
\item{box}{The box to set the attributes on}
|
|
|
|
\item{...}{The attributes to set on the box}
|
|
}
|
|
\value{
|
|
The modified box
|
|
}
|
|
\description{
|
|
Add attributes to .box elements (\code{shinydashboard::box})
|
|
}
|
|
\examples{
|
|
x <- shinydashboard::box()
|
|
htmlAddBoxAttributes(x, role = "region", `aria-label` = "This is a special box")
|
|
}
|