Created
June 7, 2014 18:59
-
-
Save endeepak/b8ccd1c28715e022b902 to your computer and use it in GitHub Desktop.
Show card number, number of cards in trello
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
| (function(){ | |
| var update = function() { | |
| $('.card-short-id').removeClass('hide').css('font-weight',700); | |
| $('.list-header-num-cards').removeClass('hide').css('font-weight',700); | |
| }; | |
| $(document).ready(function() { | |
| update(); | |
| setInterval(update, 5000); | |
| }); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment