Created
June 17, 2011 08:48
-
-
Save mackuba/1031086 to your computer and use it in GitHub Desktop.
Kanbanery column width bookmarklet
This file contains 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
javascript:(function(){var w=prompt("Enter column width in pixels (press enter for default):"); w = w && parseInt(w, 10) || 300; $('.column-view-body').css('width', w + 'px'); $('.column-view').css('max-width', w + 'px'); $('.ul-columns-section-body').css('width', ($('.column-view-body').length * (w + 15)) + 'px');})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment