Skip to content

Instantly share code, notes, and snippets.

@gilchris
Created March 10, 2017 01:27
Show Gist options
  • Save gilchris/1932658a011c2d2f32903be35f9fba2b to your computer and use it in GitHub Desktop.
Save gilchris/1932658a011c2d2f32903be35f9fba2b to your computer and use it in GitHub Desktop.
Adding detail date and time info on Redmine issue page.
(function() {
if (location.href.indexOf('/issues/') > -1) {
$("a[title^='20']").each(function() { $(this).text($(this).text() + " (" + $(this).attr('title') + ")"); });
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment