Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request - filter cards worth more than x #23

Open
ckschu opened this issue Apr 18, 2016 · 1 comment
Open

Feature request - filter cards worth more than x #23

ckschu opened this issue Apr 18, 2016 · 1 comment

Comments

@ckschu
Copy link

ckschu commented Apr 18, 2016

Hi, right now there is an option to filter out small cards. I would appreciate a way to filter out expensive cards as well so I can send out bulk. Thanks for your work.

@tadhg-ohiggins
Copy link

I'd also like this feature. In the meantime, entering this in the console will, at least in Chrome, hide all rows for cards above 700 points:

$("td.value").each(function(x, y) { if (parseInt($(y).text()) > 700) { $(y).parent().hide();}})

Reloading the page will show them again, or you can do this:

$("td.value").each(function(x, y) { if (parseInt($(y).text()) > 700) { $(y).parent().show();}})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants