Hi I am using Onsen as part of a AngularJS Phonegap/Cordova project.
I was wondering is it possible to to automatically close an Onsen notification after a set time. Also is it possible to not include the button?
My current notification is shown below:
var notifyAutoClose = function(title, message) {
var options = {
title: title,
message: message,
buttonLabel: '', //Don't show button if possible
animation: 'default'
};
ons.notification.alert(options);
}
If it is not possible what would be the best non-bootstrap alternative when using AngularJS.
Thank you so much for your time!