Feature/#147 automatic time conversion #150

Merged
Serraniel merged 15 commits from feature/#147-automatic-time-conversion into develop 2020-12-29 14:40:37 +01:00
Showing only changes of commit 56d8b718b3 - Show all commits

View file

@ -11,15 +11,15 @@ export function init() {
if (value) {
core.runAfterLoad(() => {
updateTimestamps(document.documentElement);
}, ".*");
}, "^/(?!airing).*$");
core.runAfterLocationChange(() => {
updateTimestamps(document.documentElement);
}, ".*");
}, "^/(?!airing).*$");
core.registerScript(node => {
updateTimestamps(node);
}, ".*");
}, "^/(?!airing).*$");
}
});
}