@@ -177,7 +176,7 @@ Once you have defined an action group, you can reference it when scheduling noti
cordova.plugins.notification.local.schedule({
title:'Justin Rhyss',
text:'Do you want to go see a movie tonight?',
actionGroupId:'yes-no'
actions:'yes-no'
});
```
...
...
@@ -474,19 +473,33 @@ document.addEventListener('deviceready', function () {
},false);
```
It might be possible that the underlying framework like __Ionic__ is not compatible with the launch process defined by cordova. With the result that the plugin fires the click event on app start before the app is able to listen for the events.
Therefore its possible to fire the queued events manually by defining a global variable.
```js
window.skipLocalNotificationReady=true
```
Once the app and Ionic is ready, you can fire the queued events manually.