Skip to content

Instantly share code, notes, and snippets.

@vkareh
Last active August 29, 2015 14:07
Show Gist options
  • Save vkareh/9faa54f810ba87d10cbc to your computer and use it in GitHub Desktop.
Save vkareh/9faa54f810ba87d10cbc to your computer and use it in GitHub Desktop.
Highlights Trello cards in which you are a member
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