Events



onShow

Type: Function

Executes a function before displaying the message

var birdAlert = new BirdAlert({
	onShow: function () {
		alert('show');
	}
});

onHide

Type: Function

Executes a function after hiding the message

var birdAlert = new BirdAlert({
	onHide: function () {
		alert('hide');
	}
});