Created
December 6, 2017 09:00
-
-
Save Pavracer/bfb21bc00fe51c2fe1aac50df345d787 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
| <script id="close-toggle"> | |
| jQuery( document ).ready(function() { | |
| jQuery('.et_pb_accordion .et_pb_toggle_open').addClass('et_pb_toggle_close').removeClass('et_pb_toggle_open'); | |
| jQuery('.et_pb_accordion .et_pb_toggle').click(function() { | |
| $this = jQuery(this); | |
| setTimeout(function(){ | |
| $this.closest('.et_pb_accordion').removeClass('et_pb_accordion_toggling'); | |
| },700); | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment