Created
March 10, 2017 01:27
-
-
Save gilchris/1932658a011c2d2f32903be35f9fba2b to your computer and use it in GitHub Desktop.
Adding detail date and time info on Redmine issue page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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