Skip to content

Instantly share code, notes, and snippets.

@andywhite37
Created August 1, 2013 03:29
Show Gist options
  • Save andywhite37/6128190 to your computer and use it in GitHub Desktop.
Save andywhite37/6128190 to your computer and use it in GitHub Desktop.
Userscript for Rally tweaks.
// ==UserScript==
// @name RallyDev Tweaks
// @namespace http://acdub.com
// @version 0.1
// @description Usability tweaks for rallydev.com
// @match http://*.rallydev.com/*
// @match https://*.rallydev.com/*
// @copyright 2013+, Andy White
// @require http://code.jquery.com/jquery-1.8.3.min.js
// ==/UserScript==
console.log("RallyDev Tweaks");
$(function() {
var $style;
console.log("Document ready");
$("<style type='text/css' />").appendTo("head").html(".editrow input { width: 100% }");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment