Created
September 23, 2015 11:35
-
-
Save ZakharDay/73645e1d8d1d11282872 to your computer and use it in GitHub Desktop.
This file contains 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
# If you have clickable element inside another clickable element | |
# you can handle outside element click with prevent default function | |
handleOutsideClick: (e) -> | |
# If you click on inside button you need to prevent outside action | |
if $(e.target).parents('.insideButton') | |
e.preventDefault() | |
# Else you can do what you want | |
else | |
@doSomething() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment