datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
250 B
11 lines
250 B
6 years ago
|
$(function() {
|
||
|
// auto hide flash alerts
|
||
|
let $notifs = $('div.alert').not('.alert-important').addClass('fadeout')
|
||
|
setTimeout(() => {
|
||
|
$notifs.addClass('fade')
|
||
|
setTimeout(() => {
|
||
|
$notifs.addClass('hidden')
|
||
|
}, 500)
|
||
|
}, 2500)
|
||
|
})
|