Pro Inline Navigation Tablet Fix
Pro Inline Navigation Tablet Fix
/* Tablet Fix */ jQuery(document).ready(function($) { if( $(window).width() > 979 ){ $( ".menu-item-has-children > a" ).click(function(e) { if ( !$(this).hasClass("x-active") ) { e.stopImmediatePropagation(); } console.log( $(this).hasClass('x-active') ); }); } });