mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-21 13:38:21 -05:00
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
/**
|
|
* This function provides the ability for the button to toggle the dropdown error-box
|
|
* in the search page.
|
|
*/
|
|
function toggleErrorBox() {
|
|
document.querySelector('.dropdown_error_box').classList.toggle('show')
|
|
}
|