Commit c419f6b2 by Sebastián Katzer

Fix syntax mistake

parent b8da398a
...@@ -218,11 +218,12 @@ window.plugin.notification.local.add({ image: 'appdata:ApplicationIcon.png' }) ...@@ -218,11 +218,12 @@ window.plugin.notification.local.add({ image: 'appdata:ApplicationIcon.png' })
All images can be restored to the default ones by canceling the notification. All images can be restored to the default ones by canceling the notification.
### Custom repeating interval on Android ### Custom repeating interval on Android
To specify a custom interval, the `repeat` property can be assigned with an number in minutes. To specify a custom interval, the `repeat` property can be assigned with an number in minutes.
``` ```javascript
/** /**
* Schedules the notification quarterly every 15 mins * Schedules the notification quarterly every 15 mins
*/ */
window.plugin.notification.local.add({ repeat: 15 }); window.plugin.notification.local.add({ repeat: 15 });
```
## Quirks ## Quirks
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment