Skip to content

Instantly share code, notes, and snippets.

@CodeBrauer
Last active January 24, 2016 14:56
Show Gist options
  • Save CodeBrauer/736d92e1cbcce0fceeed to your computer and use it in GitHub Desktop.
Save CodeBrauer/736d92e1cbcce0fceeed to your computer and use it in GitHub Desktop.
show absolute timestamps commits log gitlab
setInterval(function() {
timestamps = document.querySelectorAll('time');
Array.prototype.forEach.call(timestamps, function(el) {
el.innerHTML = el.getAttribute('datetime')
});
}, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment