houdini/app/javascript/legacy/common/notification.js
2020-04-23 14:09:14 -05:00

13 lines
333 B
JavaScript

// License: LGPL-3.0-or-later
var notification = function(msg, err) {
var el = document.getElementById('js-notification')
if(err) {el.className = 'show error'}
else {el.className = 'show'}
el.innerText = msg
window.setTimeout(function() {
el.className = ''
el.innerText = ''
}, 7000)
}
module.exports = notification