14 lines
No EOL
326 B
JavaScript
14 lines
No EOL
326 B
JavaScript
function doNow(fn) {
|
|
fn();
|
|
return fn;
|
|
}
|
|
|
|
function labelTimeElement(tag, time) {
|
|
time = dayjs(time);
|
|
|
|
if (tag.innerText == "")
|
|
tag.innerText = time.fromNow();
|
|
tag.setAttribute("data-bs-toggle", "tooltip");
|
|
tag.setAttribute("data-bs-title", time.format("L LT"));
|
|
new bootstrap.Tooltip(tag);
|
|
} |