We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a simple notification that calls a callback after a minute:
function callback() { console.log("callback!"); } let now = new Date().getTime(), _10_sec_from_now = new Date(now + 60*1000); window.cordova.plugins.notification.local.hasPermission(function (granted) { console.log('Permission has been granted: ' + granted); }); window.cordova.plugins.notification.local.schedule({ id: 1, title: "Title", text: "text", at: _10_sec_from_now }, callback);
I am seeing the log as soon as the page loads. Any pointers would be great, thank you!
james
The text was updated successfully, but these errors were encountered:
Use the template in #1188 to provide more information.
Sorry, something went wrong.
Closed as no response from original poster
No branches or pull requests
I have a simple notification that calls a callback after a minute:
I am seeing the log as soon as the page loads. Any pointers would be great, thank you!
james
The text was updated successfully, but these errors were encountered: