mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-13 04:53:18 +00:00
7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
document.addEventListener('hide.bs.modal', function (event) {
|
|
// Remove the focus from the active element
|
|
if (document.activeElement) {
|
|
document.activeElement.blur()
|
|
}
|
|
})
|