Show Waiter as partial or full screen
masterThe scope of the loading overlay is determined by the id passed to Waiter$new():
- Partial Overlay: Pass the
idof a specific HTML element (e.g.,Waiter$new("my-div-id")). The loading screen will only cover that specific element. - Full Screen Overlay: Call
Waiter$new()without anidargument. The loading screen will cover the entire application window.
# Partial: covers only the element with id "hello"
w1 <- Waiter$new("hello")
# Full screen: covers the whole app
w2 <- Waiter$new()