Skip to content

Instantly share code, notes, and snippets.

@keo
Created September 20, 2011 10:58
Show Gist options
  • Save keo/1228859 to your computer and use it in GitHub Desktop.
Save keo/1228859 to your computer and use it in GitHub Desktop.
FogBugz Kanban board beautifier
// ==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