Skip to content

Commit

Permalink
Enable busy indicators by default
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Jul 29, 2024
1 parent 4bc330e commit dd97310
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions R/busy-indicators.R
Original file line number Diff line number Diff line change
Expand Up @@ -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())
)
}

0 comments on commit dd97310

Please sign in to comment.