We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f90c9 commit 1f358bcCopy full SHA for 1f358bc
_includes/blog_tags_filter.html
@@ -11,15 +11,17 @@
11
12
jQuery('.blog-tag-container').fadeOut('fast', function () {
13
jQuery('.blog-posts-nav').fadeIn('fast');
14
+ jQuery('ul.pagination').fadeIn('fast');
15
});
16
} else {
17
jQuery(this).addClass("selected");
18
19
+ let this_obj = this;
20
jQuery('.blog-tag-container div[data-tag="'+jQuery(this).data("tag")+'"]').siblings().fadeOut('fast', function () {
- jQuery(this).fadeIn('fast');
21
+ jQuery('.blog-tag-container div[data-tag="'+jQuery(this_obj).data("tag")+'"]').fadeIn('fast');
22
23
- jQuery('.blog-posts-nav').fadeOut('fast', function () {
24
+ jQuery('.blog-posts-nav, ul.pagination').fadeOut('fast', function () {
25
jQuery('.blog-tag-container').fadeIn('fast');
26
27
}
0 commit comments