Skip to content

Instantly share code, notes, and snippets.

@eddies
Last active January 24, 2018 03:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eddies/63fbbfba5ad8e62bdc0d5cb7f755ca8f to your computer and use it in GitHub Desktop.
Save eddies/63fbbfba5ad8e62bdc0d5cb7f755ca8f to your computer and use it in GitHub Desktop.
Trello Card Numbers bookmarklet
javascript:void (function () {
let o = $('.card-short-id');
o.hasClass('hide') ? o.removeClass('hide').css({
'margin-right': '5px',
color: 'black',
'font-weight': 'bold'
}) : o.addClass('hide');
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment