Created
September 20, 2011 10:58
-
-
Save keo/1228859 to your computer and use it in GitHub Desktop.
FogBugz Kanban board beautifier
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 FogBugz Kanban beautifier | |
// @namespace http://divinemedia.com/ | |
// @version 0.4 | |
// @description Make FogBugz Kanban board status display friendly | |
// @include http://*/* | |
// @match https://*.fogbugz.com/default.asp?pg=pgPlugin&[email protected] | |
// @copyright 2011+, Barnabas Debreczeni ([email protected]) | |
// ==/UserScript== | |
if ($('#formWithPerson').length > 0) { | |
$('#sPerson').val('') | |
$('input[name=sPassword]').val('') | |
$('#formWithPerson').submit() | |
} | |
$('#tbFull').hide() | |
$('#toolbar').hide() | |
$('#box').css('margin-top', '0px') | |
$('body').css('overflow-y', 'hidden') | |
$('#save').attr('disabled', true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment