Last active
November 6, 2017 09:03
-
-
Save gilchris/71bb6c44625722e0ae0d31ea0378e788 to your computer and use it in GitHub Desktop.
Adding to highlighting login user name on redmine issue rows.
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
// ==UserScript== | |
// @name Redmine My Issue Highlighter | |
// @namespace https://gist.github.com/gilchris/71bb6c44625722e0ae0d31ea0378e788 | |
// @include /^.*redmine.*$/i | |
// ==/UserScript== | |
(function() { | |
var activeUserLink = $("div[id='loggedas'] > a").attr('href'); | |
$("a[href='" + activeUserLink + "']").each(function() { $(this).html("<b style='color:#000000'>" + $(this).html() + "</b>"); }); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment