LLWiki正在建設中,歡迎加入我們

「Widget:Countdown」修訂間的差異

跳至導覽 跳至搜尋
const run = () => {
document.querySelectorAll( '.countdownNode:not(.disabled)' ).forEach((ele) => {
if(ele.dataset.title) = ele.title;{
ele.removeAttribute('dataset.title = ele.title');
ele.removeAttribute('title');
}
fromNow(ele);
ele.style.visibility = "visible";
window.setInterval(fromNow(ele), 1000);
});
};
});
run();
window.setInterval(fromNow(ele)run, 1000);
});
//</pre>