Remote Notifications are meant to be executed only if user clicks on one of them by default.
But when user clicks on the app icon, even with presence of the red "badge" incremented, notifications aren't taken into account, as evoked by the documentation:
If the application icon is tapped on a device running iOS, the application calls the same method, but furnishes no information about the notification.
Using Cordova/PhoneGap in the Javascript side (not with objective-C directly), is there a callback that I could set to trigger some codes (like a refresh of data) when the user clicks on the app's icon? I read the documentation but can't find a similar thing.
Otherwise I would present stale data to user ...