Skip to content

Commit 2d69596

Browse files
committed
Removed console.log lines and unnecessary line of code
1 parent a8fd5f2 commit 2d69596

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

_includes/scripts.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,8 @@
5454

5555
function filterCards(filterText) {
5656
resetCards();
57-
filteredCards = $('div.align-items-stretch');
58-
5957
$.each(allCards, function() {
6058
var card = $(this);
61-
console.log(card);
62-
console.log(card.not(':has(span.badge:contains("' + filterText + '"))'));
6359
if (card.not(':has(span.badge:contains("' + filterText + '"))').length > 0) {
6460
card.toggleClass('d-flex');
6561
$(card).hide();

0 commit comments

Comments
 (0)