mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
added version to shinyDeprecated call; updated NEWS
This commit is contained in:
5
NEWS
5
NEWS
@@ -1,10 +1,5 @@
|
||||
shiny 0.13.2.9001
|
||||
--------------------------------------------------------------------------------
|
||||
* Added an error sanitization option: `options(shiny.sanitize.errors = TRUE)`.
|
||||
To err on the side of security, the default is `TRUE` (i.e. sanitized errors,
|
||||
with most error messages being generic). This changes the look of an app
|
||||
when errors are printed (but the console remains the same).
|
||||
|
||||
* Closed #1161: Deprecated the `position` argument to `tabsetPanel()` since
|
||||
Bootstrap 3 stopped supporting this feature.
|
||||
|
||||
|
||||
@@ -631,7 +631,8 @@ tabsetPanel <- function(...,
|
||||
position = NULL) {
|
||||
if (!is.null(position)) {
|
||||
shinyDeprecated(msg = paste("tabsetPanel: argument 'position' is deprecated;",
|
||||
"it has been discontinued in Bootstrap 3."))
|
||||
"it has been discontinued in Bootstrap 3."),
|
||||
version = "0.10.2.2")
|
||||
}
|
||||
|
||||
# build the tabset
|
||||
|
||||
Reference in New Issue
Block a user