Last active
January 24, 2018 03:00
-
-
Save eddies/63fbbfba5ad8e62bdc0d5cb7f755ca8f to your computer and use it in GitHub Desktop.
Trello Card Numbers bookmarklet
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
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