Created
June 19, 2018 15:48
-
-
Save NickDeckerDevs/33bb4c332c73b97feb7a3e8705ad0cd3 to your computer and use it in GitHub Desktop.
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 characters
| function is_filtered() { | |
| if($('.topic-options > .topic-checkbox').length == $('.topic-options > .topic-checkbox.checked').length && $('.type-options > .type-checkbox').length == $('.type-options > .type-checkbox.checked').length) { | |
| $('.choose-topic-select .filter-all').text('Filters: Show All').removeClass('clear-all') | |
| } else { | |
| $('.choose-topic-select .filter-all').text('Filters: Clear All').addClass('clear-all') | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment