Last active
May 18, 2017 06:51
-
-
Save bitzip/3943a049fd9cebb2ad5abaa6327a9245 to your computer and use it in GitHub Desktop.
concatenate redmine title as commit text
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-issue-text | |
// @namespace https://gist.github.com/kelly-apollo/3943a049fd9cebb2ad5abaa6327a9245 | |
// @version 0.2.2 | |
// @description try to take over the world! | |
// @author Kelly Apollo | |
// @match *://redmine.gizwits.com/* | |
// @match *://redmine.xtremeprog.com/* | |
// ==/UserScript== | |
/* jshint -W097 */ | |
'use strict'; | |
$(function(){ | |
$('#content h3').first().html(function(){ | |
return $(this).html() + ' (' + $('#content h2').html() + ')' | |
}) | |
}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment