(function($) { "use strict"; // Start of use strict /** * Calculate and set custom header media height. */ $(document).ready(function(){ var mainNavHeight = $( '.main-navigation' ).outerHeight( true ); $( '.custom-header-other-page .custom-header-media' ).css('height',mainNavHeight ); }); /** * Control the serchbox events. */ $('#nav-search i').on('click tap',function(event) { $('.ananya-popup-search-form').toggleClass('open-search-form'); }); $('.ananya-close-popup').on('click tap', function (event) { $('.ananya-popup-search-form').removeClass('open-search-form'); }); /** * Change the arrow direction of read more button if RTL is enabled. */ if ( $('body').hasClass('rtl') ) { $('.more-link i').removeClass('fa-long-arrow-right'); $('.more-link i').addClass('fa-long-arrow-left'); } })(jQuery); // End of use strict