Skip to content

Instantly share code, notes, and snippets.

@bitzip
Last active May 18, 2017 06:51
Show Gist options
  • Save bitzip/3943a049fd9cebb2ad5abaa6327a9245 to your computer and use it in GitHub Desktop.
Save bitzip/3943a049fd9cebb2ad5abaa6327a9245 to your computer and use it in GitHub Desktop.
concatenate redmine title as commit text
// ==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