Skip to content

Commit

Permalink
Merge pull request #45 from coatless-quarto/fix-countdown-fullscreen-i43
Browse files Browse the repository at this point in the history
Fix countdown_fullscreen()
  • Loading branch information
coatless authored Jan 25, 2024
2 parents b000d84 + b67e400 commit cf755d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions r/NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

* Fixed an issue where custom URLs for `play_sound` were not used for the timer
end sound. (thanks @jannismain, #38)

* Fixed `countdown_fullscreen()` not passing along `class` and `start_immediately` parameters. (#45)

## Changes

Expand Down
4 changes: 2 additions & 2 deletions r/R/countdown.R
Original file line number Diff line number Diff line change
Expand Up @@ -297,13 +297,13 @@ countdown_fullscreen <- function(
countdown(
minutes,
seconds,
class = c("countdown-fullscreen", NULL),
class = c("countdown-fullscreen", class),
font_size = font_size,
border_width = border_width,
border_radius = border_radius,
margin = margin,
padding = padding,
start_immediately = FALSE,
start_immediately = start_immediately,
top = top,
right = right,
bottom = bottom,
Expand Down

0 comments on commit cf755d6

Please sign in to comment.