$(document).ready(function() { 'use strict'; var search_field = $('.search-form__field'), search_results = $('.search-results'), toggle_search = $('.toggle-search-button'), close_search = $('.close-search-button'), search_result_template = "\
\ {{title}}\ {{pubDate}}\
"; toggle_search.click(function(event) { event.preventDefault(); $('.search-form-container').addClass('is-active'); setTimeout(function() { search_field.focus(); }, 500); }); $('.search-form-container').on('keyup', function(event) { if (event.keyCode == 27) { $('.search-form-container').removeClass('is-active'); } }); $('.close-search-button').click(function() { $('.search-form-container').removeClass('is-active'); }); search_field.ghostHunter({ results: search_results, onKeyUp : true, rss : base_url + '/feed.xml', zeroResultsInfo : false, info_template : "

Number of posts found: {{amount}}

", result_template : search_result_template, before: function() { search_results.fadeIn(); } }); });