We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5416002 commit babb91fCopy full SHA for babb91f
1 file changed
source/js/events.js
@@ -30,8 +30,16 @@ Fluid.events = {
30
}
31
});
32
jQuery('#navbar-toggler-btn').on('click', function() {
33
+ var $this = jQuery(this);
34
+ if ($this.data('animating')) {
35
+ return;
36
+ }
37
+ $this.data('animating', true);
38
jQuery('.animated-icon').toggleClass('open');
39
jQuery('#navbar').toggleClass('navbar-col-show');
40
+ setTimeout(function() {
41
+ $this.data('animating', false);
42
+ }, 300);
43
44
},
45
0 commit comments