Skip to content

Instantly share code, notes, and snippets.

@kawanaka2141
Created June 19, 2014 02:51
Show Gist options
  • Save kawanaka2141/20b57bf3cf83ac49564b to your computer and use it in GitHub Desktop.
Save kawanaka2141/20b57bf3cf83ac49564b to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Redmine Username Shorten
// @version 0.1
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
// @match http://*/redmine/projects/*/issues*
// ==/UserScript==
(function(){
function takeFirstName(i, elem){
$(elem).text($(elem).text().split(" ")[0]);
}
$('.author a').each(takeFirstName);
$('.assigned_to a').each(takeFirstName);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment