notifire({
msg: 'this is a test message'
});
notifire({
msg: 'Yeah!!! Success!!!',
types: 'success'
});
notifire({
msg: 'this is a test message with width of 400px and height of 200px',
types: 'info',
width: 400,
height: 200
});
notifire({
msg: 'I am on the right',
types: 'warning',
position: 'right'
});
notifire({
msg: 'I will be gone in 1 second!!!',
types: 'danger',
timeout: 1000
});