Skip to content

Instantly share code, notes, and snippets.

@xifengzhu
Created November 2, 2015 04:38
Show Gist options
  • Save xifengzhu/a2544a8686338e05e3e3 to your computer and use it in GitHub Desktop.
Save xifengzhu/a2544a8686338e05e3e3 to your computer and use it in GitHub Desktop.
spellbook script for trello
Trello-filter: no label
javascript: (function () {$(".list-card").each(function(){ if ($(this).find(".list-card-labels").children().length) { $(this).toggle() } }) })();
Trello-filter: no points
javascript: !function(){$(".list-card").each(function(){""!==$(this).find(".list-card-details .badges .badge-points.point-count").text()&&$(this).toggle()})}();
Trello-filter: no assignees
javascript: !function(){var cards=$(".list-card").has(".list-card-details .list-card-members .member");cards.toggle()}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment