Executes a function before displaying the message
var birdAlert = new BirdAlert({
onShow: function () {
alert('show');
}
});
Executes a function after hiding the message
var birdAlert = new BirdAlert({
onHide: function () {
alert('hide');
}
});