Created
February 16, 2017 23:35
-
-
Save mfifth/b38bd7642f020f73e0ebf0e4a0c2eb39 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
| function closeIFrame() { | |
| $('#chat-window-iframe').hide(); | |
| }; | |
| $(document).on('click', '.close-chat', function(e) { | |
| parent.closeIFrame(); | |
| e.preventDefault(); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment