forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhub-buttons.js
40 lines (33 loc) · 1.07 KB
/
hub-buttons.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var numberOfCardsToShow = 3;
$(".cards-left > .col-md-12, .cards-right > .col-md-12")
.filter(function() {
return $(this).attr("data-item-count") > numberOfCardsToShow;
})
.hide();
$("#development-models").on("click", function() {
showCards(this, "#development-models-hide", ".cards-right > .col-md-12");
});
$("#development-models-hide").on("click", function() {
hideCards(this, "#development-models", ".cards-right > .col-md-12");
});
$("#research-models").on("click", function() {
showCards(this, "#research-models-hide", ".cards-left > .col-md-12");
});
$("#research-models-hide").on("click", function() {
hideCards(this, "#research-models", ".cards-left > .col-md-12");
});
function showCards(buttonToHide, buttonToShow, cardsWrapper) {
$(buttonToHide).hide();
$(buttonToShow)
.add(cardsWrapper)
.show();
}
function hideCards(buttonToHide, buttonToShow, cardsWrapper) {
$(buttonToHide).hide();
$(buttonToShow).show();
$(cardsWrapper)
.filter(function() {
return $(this).attr("data-item-count") > numberOfCardsToShow;
})
.hide();
}