Skip to content

Instantly share code, notes, and snippets.

@H7-25
Created May 8, 2014 23:31
Show Gist options
  • Save H7-25/80293bb1c32b6a8fc81c to your computer and use it in GitHub Desktop.
Save H7-25/80293bb1c32b6a8fc81c to your computer and use it in GitHub Desktop.
Autohide memberlist for narrow view
// Determine if we have a narrow window (mobile/tablet/or even small desktop window)
if (el_kiwi.outerWidth() < 400) {
el_kiwi.addClass('narrow');
el_right_bar.addClass('disabled');
} else {
el_kiwi.removeClass('narrow');
el_right_bar.removeClass('disabled');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment