houdini/client/js/common/notification.js

13 lines
303 B
JavaScript
Raw Normal View History

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