Widget:Countdown:修订间差异
来自OGAS数据中枢
更多语言
更多操作
imported>弃权者 无编辑摘要 |
imported>弃权者 无编辑摘要 |
||
| 第2行: | 第2行: | ||
"use strict"; | "use strict"; | ||
(function() { | (function() { | ||
if (typeof | if (typeof mw !== 'undefined' && mw.loader) { | ||
initCountdown(); | mw.loader.using('moment').then(() => { | ||
initCountdown(); | |||
}).catch(() => { | |||
document.querySelectorAll('.countdownNode').forEach(el => { | |||
el.textContent = '(无法加载时间库)'; | |||
el.classList.add('error'); | |||
}); | |||
}); | |||
} else { | |||
document.querySelectorAll('.countdownNode').forEach(el => { | document.querySelectorAll('.countdownNode').forEach(el => { | ||
el.textContent = ' | el.textContent = '(MediaWiki环境异常)'; | ||
el.classList.add('error'); | el.classList.add('error'); | ||
}); | }); | ||
} | } | ||
function initCountdown() { | function initCountdown() { | ||
2026年3月3日 (二) 08:38的版本
仅供{{Countdown}}使用。