From dd97310cf6e6c4a7dd60c9b4f562d58e10ce6df0 Mon Sep 17 00:00:00 2001 From: Carson Date: Mon, 29 Jul 2024 17:22:44 -0500 Subject: [PATCH] Enable busy indicators by default --- NEWS.md | 9 +++++++++ R/busy-indicators.R | 3 +-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 6ec290f40..7d5a853c7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,14 @@ # shiny (development version) +## New features and improvements + +## Changes + +* Busy indication is now enabled by default. If this happens to have an undesirable affect, disable busy indication by putting `useBusyIndicators(spinners = FALSE, pulse = FALSE)` somewhere in the UI definition. (#4040) + +## Bug fixes + + # shiny 1.9.0 ## New busy indication feature diff --git a/R/busy-indicators.R b/R/busy-indicators.R index 026c1e541..61fe330af 100644 --- a/R/busy-indicators.R +++ b/R/busy-indicators.R @@ -288,7 +288,6 @@ busyIndicatorDependency <- function() { src = "www/shared/busy-indicators", package = "shiny", stylesheet = "busy-indicators.css", - # TODO-future: In next release make spinners and pulse opt-out - # head = as.character(useBusyIndicators()) + head = as.character(useBusyIndicators()) ) }