adjective

Url

25 of 60
Other / Stop

abrupt - Sudden and unexpected, often in an unpleasant way

The company was not succeeding, mostly because the CEO kept abruptly changing the goals of where the company should be heading, and the methods for achieving those goals.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }