You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the stopAt attribute is present in a countdown instance, it will immediately stop. This is likely because the shouldStop method looks at the value of the clock face, which itself is counting down from the originalValue, which is the wanted stop time for a countdown. This means that the stopAt time always will be greater than the face value, thus causing shouldStop to return true.
The text was updated successfully, but these errors were encountered:
This did work, but it is rather counter-intuitive. When it is named "stopAt", it makes the most sense that it is the date or face value when it stops, just like it is for non-countdowns.
If the
stopAt
attribute is present in a countdown instance, it will immediately stop. This is likely because theshouldStop
method looks at the value of the clock face, which itself is counting down from theoriginalValue
, which is the wanted stop time for a countdown. This means that thestopAt
time always will be greater than the face value, thus causingshouldStop
to return true.The text was updated successfully, but these errors were encountered: