noun

109 of 732
Other / Light

glint - A small flash of light, especially as reflected from a shiny surface

Through the open door, the dog could see a glint of light peeking through.

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