mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
ab6c03c0cc
- Use JSX for templates - Docblock/comment everything - Mostly passes ESLint (still some work to do) - Lots of renaming, refactoring, etc. CSS hasn't been updated yet.
19 lines
448 B
JavaScript
19 lines
448 B
JavaScript
import humanTimeUtil from 'flarum/utils/humanTime';
|
|
|
|
function updateHumanTimes() {
|
|
$('[data-humantime]').each(function() {
|
|
const $this = $(this);
|
|
const ago = humanTimeUtil($this.attr('datetime'));
|
|
|
|
$this.html(ago);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* The `humanTime` initializer sets up a loop every 1 second to update
|
|
* timestamps rendered with the `humanTime` helper.
|
|
*/
|
|
export default function humanTime() {
|
|
setInterval(updateHumanTimes, 1000);
|
|
}
|