@once @push('onload-scripts') $('#appshell-search-modal').on('shown.bs.modal', function () { $('#appshell-search-modal-input').trigger('focus'); }); document.addEventListener('keydown', function (event) { if (event.shiftKey && event.keyCode == 16) { var smodal = document.getElementById('appshell-search-modal'); if (smodal.getClientRects().length === 0) { // the modal isn't visible if (1 == smodal.getAttribute('data-shift-triggered')) { smodal.removeAttribute('data-shift-triggered'); $('#appshell-search-modal').modal('show'); } else { smodal.setAttribute('data-shift-triggered', 1); setTimeout(function() { document.getElementById('appshell-search-modal').removeAttribute('data-shift-triggered'); }, 500); } } } }); @endpush @endonce