Last active
August 29, 2015 14:07
-
-
Save vkareh/9faa54f810ba87d10cbc to your computer and use it in GitHub Desktop.
Highlights Trello cards in which you are a member
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
setTimeout(function() { | |
var name = $('.header-user img.member-avatar').attr('title'); | |
$('.js-member-on-card-menu img[title="' + name + '"]').each(function() { | |
$(this).parents('.list-card-details').css('background-color', '#fcaf3e'); | |
}); | |
}, 2000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment