Nothing
setpb <-
function(pb, value)
{
if (dopb()) {
control <- getOption("pboptions")
rval <- switch(control$type,
timer = setTxtProgressBar(pb, value),
txt = setTxtProgressBar(pb, value),
win = setWinProgressBar(pb, value, label = control$label),
tk = tcltk::setTkProgressBar(pb, value, label = control$label))
if (doshiny())
rval <- pb$set(value,
message = if (control$title == "") NULL else control$title,
detail = if (control$label == "") NULL else control$label)
} else {
rval <- NULL
}
invisible(rval)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.