(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. */ $('#desktop-search-icon').on('click tap',function(event) { $('.ananya-popup-search-form').addClass('open-search-form'); var x = setTimeout('jQuery(".ananya-popup-search-form .search-form .search-field").focus()', 700); }); //Keyboard nevigation $('#desktop-search-icon').keyup(function(e){ if(e.which == 13 ) { $('.ananya-popup-search-form').toggleClass('open-search-form'); var x = setTimeout('jQuery(".ananya-popup-search-form .search-form .search-field").focus()', 700); } }); $('.ananya-close-popup').on('click tap', function (event) { $('.ananya-popup-search-form').removeClass('open-search-form'); }); //Keyboard nevigation $('.ananya-close-popup').keyup( function (event) { $('.ananya-popup-search-form').removeClass('open-search-form'); }); //Set focus to input field in search form if( $('.ananya-popup-search-form').css('display') == 'block' ) { alert('loading'); $('.ananya-popup-search-form .search-form .search-field').focus(); }; /** * 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