Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable busy indicators by default #4109

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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())
)
}
Loading