Skip to content

Instantly share code, notes, and snippets.

@mackuba
Created June 17, 2011 08:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mackuba/1031086 to your computer and use it in GitHub Desktop.
Save mackuba/1031086 to your computer and use it in GitHub Desktop.
Kanbanery column width bookmarklet
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