소스 검색

Example how to cancel notification immediatly after creation

Sebastián Katzer 12 년 전
부모
커밋
b129a48e55
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      README.md

+ 6 - 0
README.md

@@ -157,6 +157,12 @@ window.plugin.notification.local.add({ message: 'Great app!' });
 ```javascript
 window.plugin.notification.local.add({ sound: null });
 ```
+#### Cancel notification immediatly after creation
+```javascript
+window.plugin.notification.local.add({ id: 1, message: 'Reminder' });
+// `add` is executed asynchron!
+setTimeout('plugin.notification.local.cancel(1)', 200);
+```
 
 
 ## Platform specifics