Created
March 7, 2017 08:00
-
-
Save extra0/c8a43b9fe188a8f6eab9aaad2c5288ea 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
// закрываем языковую панель по клику вне области | |
$(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