We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fd5f2 commit 2d69596Copy full SHA for 2d69596
_includes/scripts.html
@@ -54,12 +54,8 @@
54
55
function filterCards(filterText) {
56
resetCards();
57
- filteredCards = $('div.align-items-stretch');
58
-
59
$.each(allCards, function() {
60
var card = $(this);
61
- console.log(card);
62
- console.log(card.not(':has(span.badge:contains("' + filterText + '"))'));
63
if (card.not(':has(span.badge:contains("' + filterText + '"))').length > 0) {
64
card.toggleClass('d-flex');
65
$(card).hide();
0 commit comments