Skip to content

Commit

Permalink
Fix countdown_fullscreen()
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Jan 25, 2024
1 parent b000d84 commit b67e400
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 b67e400

Please sign in to comment.