Last active
March 23, 2022 16:53
-
-
Save freddielore/02715f126e4953aab3f2e61373f9cd23 to your computer and use it in GitHub Desktop.
Revisions
-
freddielore revised this gist
Dec 12, 2020 . 1 changed file with 25 additions and 25 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,34 +1,34 @@ jQuery(document).ready(function($){ var yoast = { accordion: function(){ $('.wp-block-yoast-faq-block').find('.schema-faq-question').click(function(){ //Expand or collapse this panel $(this).nextAll('.schema-faq-answer').eq(0).slideToggle('fast', function(){ if( $(this).hasClass('collapse') ){ $(this).removeClass('collapse'); } else{ $(this).addClass('collapse'); } }); //Hide the other panels $(".schema-faq-answer").not( $(this).nextAll('.schema-faq-answer').eq(0) ).slideUp('fast'); }); $('.wp-block-yoast-faq-block .schema-faq-question').click(function(){ $('.wp-block-yoast-faq-block .schema-faq-question').not( $(this) ).removeClass('collapse'); if( $(this).hasClass('collapse') ){ $(this).removeClass('collapse'); } else{ $(this).addClass('collapse'); } }); } }; yoast.accordion(); }); -
freddielore revised this gist
Dec 18, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,6 +29,6 @@ } }; yoast.accordion(); })(jQuery) -
freddielore revised this gist
Dec 18, 2019 . 1 changed file with 30 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ /* Accordion ------------------------------------------------------------ */ .schema-faq-question{ cursor: pointer; } .schema-faq-question:before{ width: 16px; height: 20px; display: inline-block; content: "+"; margin-right: 5px; vertical-align: top; } .schema-faq-question.collapse:before{ content: "-"; } .schema-faq-question:hover{ opacity: 0.8; } .schema-faq-answer{ display: none; padding-left: 1em; } .schema-faq-answer.default{ display: block; } -
freddielore created this gist
Dec 18, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,34 @@ (function($){ var yoast = { accordion: function(){ $('.wp-block-yoast-faq-block').find('.schema-faq-question').click(function(){ //Expand or collapse this panel $(this).nextAll('.schema-faq-answer').eq(0).slideToggle('fast', function(){ if( $(this).hasClass('collapse') ){ $(this).removeClass('collapse'); } else{ $(this).addClass('collapse'); } }); //Hide the other panels $(".schema-faq-answer").not( $(this).nextAll('.schema-faq-answer').eq(0) ).slideUp('fast'); }); $('.wp-block-yoast-faq-block .schema-faq-question').click(function(){ $('.wp-block-yoast-faq-block .schema-faq-question').not( $(this) ).removeClass('collapse'); if( $(this).hasClass('collapse') ){ $(this).removeClass('collapse'); } else{ $(this).addClass('collapse'); } }); } }; // yoast.accordion(); })(jQuery)