From Dark and Darker Wiki
(Trying to understand the issue...) |
(Changing scope of a countDownDate var) |
||
Line 6: | Line 6: | ||
return setInterval(func, interval); | return setInterval(func, interval); | ||
} | } | ||
var id = "<!--{$uniqueId|default:'timer'|escape:'html'}-->" | var id = "<!--{$uniqueId|default:'timer'|escape:'html'}-->" | ||
var x = setIntOnStart( _ => { | var x = setIntOnStart( _ => { | ||
var countDownDate = new Date('<!--{$date|escape:'quotes'}-->').getTime(); | |||
var now = new Date().getTime(); | var now = new Date().getTime(); | ||
var distance = countDownDate - now; | var distance = countDownDate - now; |
Revision as of 00:56, 26 August 2024
Parameters
uniqueId
- Determines element id name
- Name needs to be unique if multiple widgets are to be displayed on the same page.
- Default:
timer
date
- String of text indicating a date and time.
- Example:
2024-12-31 23:59:59
- Example:
Example 1
{{#widget:Countdown|uniqueId=A|date=2024-08-26 23:59:59}}
Example 2
{{#widget:Countdown|uniqueId=B|date=2024-08-25 23:59:59}}
Example 3
{{#widget:Countdown|uniqueId=C|date=2024-08-24 23:59:59}}