adjective

25 of 60
Bad / Delay

stagnant - Showing no activity; dull and sluggish

In the last few decades, the income of the richest 10% has increased while that of the bottom 90% has remained stagnant.

// 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(); }); }