Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created June 19, 2018 15:48
Show Gist options
  • Select an option

  • Save NickDeckerDevs/33bb4c332c73b97feb7a3e8705ad0cd3 to your computer and use it in GitHub Desktop.

Select an option

Save NickDeckerDevs/33bb4c332c73b97feb7a3e8705ad0cd3 to your computer and use it in GitHub Desktop.
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