Skip to content

Instantly share code, notes, and snippets.

@extra0
Created March 7, 2017 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save extra0/c8a43b9fe188a8f6eab9aaad2c5288ea to your computer and use it in GitHub Desktop.
Save extra0/c8a43b9fe188a8f6eab9aaad2c5288ea to your computer and use it in GitHub Desktop.
Клик вне области
// закрываем языковую панель по клику вне области
$(document).mouseup(function(e) {
if (langList.has(e.target).length === 0 && currentLang.has(e.target).length === 0) {
langList.slideUp('500');
currentLang.removeClass('open');
langList.removeClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment