Created
December 28, 2014 07:18
-
-
Save eccentricpixel/464d1ccf36128078f2f3 to your computer and use it in GitHub Desktop.
Fix for forcing close action of Foundation 5 reveal modals. The .close-reveal-modal doesn't always work in 5.
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
// fix for forcing close of foundation modals with close button | |
$('.close-reveal-modal').on('click tap touchstart', function() { | |
return $('[data-reveal]').foundation('reveal', 'close'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment