pushwoosh-cordova-plugin 6.1.0 → 6.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/{MIT-LICENSE.txt → LICENSE.md} +0 -0
  2. package/README.md +20 -32
  3. package/README_PGB.md +32 -0
  4. package/package.json +1 -1
  5. package/package_pgb.json +29 -0
  6. package/plugin.xml +71 -85
  7. package/src/android/src/com/pushwoosh/plugin/internal/PhonegapPluginProvider.java +22 -0
  8. package/src/android/src/com/pushwoosh/plugin/pushnotifications/CustomFirebaseMessagingService.java +29 -0
  9. package/src/android/src/com/pushwoosh/plugin/pushnotifications/InboxUiStyleManager.java +136 -0
  10. package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushNotifications.java +339 -388
  11. package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushwooshNotificationServiceExtension.java +38 -0
  12. package/src/ios/PWBackward.h +25 -0
  13. package/src/ios/PWBackward.m +53 -0
  14. package/src/ios/PushNotification.m +409 -158
  15. package/src/ios/Pushwoosh.framework/Modules/module.modulemap +6 -0
  16. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWAppDelegate.h +20 -0
  17. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWGDPRManager.h +46 -0
  18. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInAppManager.h +174 -0
  19. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInbox.h +147 -0
  20. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInlineInAppView.h +26 -0
  21. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWLog.h +23 -0
  22. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWMessaging.h +20 -0
  23. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWNotificationExtensionManager.h +33 -0
  24. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWRichMediaManager.h +118 -0
  25. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWRichMediaStyle.h +122 -0
  26. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PushNotificationManager.h +263 -151
  27. package/src/ios/Pushwoosh.framework/Versions/A/Headers/Pushwoosh.h +525 -0
  28. package/src/ios/Pushwoosh.framework/Versions/A/libPushwoosh.a +0 -0
  29. package/src/ios/PushwooshInboxBundle.bundle/Info.plist +0 -0
  30. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxAttachmentViewController.nib +0 -0
  31. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxMessageViewCell.nib +0 -0
  32. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxViewController.nib +0 -0
  33. package/src/ios/PushwooshInboxBundle.bundle/errorMessage@2x.png +0 -0
  34. package/src/ios/PushwooshInboxBundle.bundle/inbox_icon.png +0 -0
  35. package/src/ios/PushwooshInboxBundle.bundle/noMessage@2x.png +0 -0
  36. package/src/ios/PushwooshInboxBundle.bundle/unread.png +0 -0
  37. package/src/ios/PushwooshInboxUI.framework/Modules/module.modulemap +6 -0
  38. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PWIInboxStyle.h +122 -0
  39. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PWIInboxUI.h +39 -0
  40. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PushwooshInboxUI.h +19 -0
  41. package/src/ios/PushwooshInboxUI.framework/Versions/A/libPushwooshInboxUI.a +0 -0
  42. package/src/windows/PushSDK/Newtonsoft.Json.dll +0 -0
  43. package/src/windows/PushSDK/PushSDK.winmd +0 -0
  44. package/src/windows/PushwooshPluginProxy.js +88 -74
  45. package/src/wp8/PushNotification.cs +14 -0
  46. package/src/wp8/PushSDK/PushSDK.dll +0 -0
  47. package/www/PushNotification.js +171 -45
  48. package/Documentation/files/PushNotification-js.html +0 -157
  49. package/Documentation/index/Classes.html +0 -33
  50. package/Documentation/index/Functions.html +0 -61
  51. package/Documentation/index/General.html +0 -65
  52. package/Documentation/index.html +0 -1
  53. package/Documentation/javascript/main.js +0 -841
  54. package/Documentation/javascript/prettify.js +0 -1526
  55. package/Documentation/javascript/searchdata.js +0 -92
  56. package/Documentation/search/ClassesP.html +0 -20
  57. package/Documentation/search/FunctionsA.html +0 -20
  58. package/Documentation/search/FunctionsC.html +0 -20
  59. package/Documentation/search/FunctionsG.html +0 -20
  60. package/Documentation/search/FunctionsO.html +0 -20
  61. package/Documentation/search/FunctionsP.html +0 -20
  62. package/Documentation/search/FunctionsR.html +0 -20
  63. package/Documentation/search/FunctionsS.html +0 -20
  64. package/Documentation/search/FunctionsU.html +0 -20
  65. package/Documentation/search/GeneralA.html +0 -20
  66. package/Documentation/search/GeneralC.html +0 -20
  67. package/Documentation/search/GeneralF.html +0 -20
  68. package/Documentation/search/GeneralG.html +0 -20
  69. package/Documentation/search/GeneralO.html +0 -20
  70. package/Documentation/search/GeneralP.html +0 -20
  71. package/Documentation/search/GeneralR.html +0 -20
  72. package/Documentation/search/GeneralS.html +0 -20
  73. package/Documentation/search/GeneralU.html +0 -20
  74. package/Documentation/search/NoResults.html +0 -15
  75. package/Documentation/styles/main.css +0 -828
  76. package/VERSION.md +0 -138
  77. package/push.gradle +0 -21
  78. package/src/android/src/com/pushwoosh/plugin/pushnotifications/NotificationFactory.java +0 -29
  79. package/src/ios/Pushwoosh.framework/Versions/A/Pushwoosh +0 -0
@@ -1,92 +0,0 @@
1
- var indexSectionsWithContent = {
2
- "General": {
3
- "Symbols": false,
4
- "Numbers": false,
5
- "A": true,
6
- "B": false,
7
- "C": true,
8
- "D": false,
9
- "E": false,
10
- "F": true,
11
- "G": true,
12
- "H": false,
13
- "I": false,
14
- "J": false,
15
- "K": false,
16
- "L": false,
17
- "M": false,
18
- "N": false,
19
- "O": true,
20
- "P": true,
21
- "Q": false,
22
- "R": true,
23
- "S": true,
24
- "T": false,
25
- "U": true,
26
- "V": false,
27
- "W": false,
28
- "X": false,
29
- "Y": false,
30
- "Z": false
31
- },
32
- "Functions": {
33
- "Symbols": false,
34
- "Numbers": false,
35
- "A": true,
36
- "B": false,
37
- "C": true,
38
- "D": false,
39
- "E": false,
40
- "F": false,
41
- "G": true,
42
- "H": false,
43
- "I": false,
44
- "J": false,
45
- "K": false,
46
- "L": false,
47
- "M": false,
48
- "N": false,
49
- "O": true,
50
- "P": true,
51
- "Q": false,
52
- "R": true,
53
- "S": true,
54
- "T": false,
55
- "U": true,
56
- "V": false,
57
- "W": false,
58
- "X": false,
59
- "Y": false,
60
- "Z": false
61
- },
62
- "Classes": {
63
- "Symbols": false,
64
- "Numbers": false,
65
- "A": false,
66
- "B": false,
67
- "C": false,
68
- "D": false,
69
- "E": false,
70
- "F": false,
71
- "G": false,
72
- "H": false,
73
- "I": false,
74
- "J": false,
75
- "K": false,
76
- "L": false,
77
- "M": false,
78
- "N": false,
79
- "O": false,
80
- "P": true,
81
- "Q": false,
82
- "R": false,
83
- "S": false,
84
- "T": false,
85
- "U": false,
86
- "V": false,
87
- "W": false,
88
- "X": false,
89
- "Y": false,
90
- "Z": false
91
- }
92
- }
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_PushNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification" target=_parent class=ISymbol>PushNotification</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_addToApplicationIconBadgeNumber><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.addToApplicationIconBadgeNumber" target=_parent class=ISymbol>addToApplicationIconBadgeNumber</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_cancelAllLocalNotifications><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.cancelAllLocalNotifications" target=_parent class=ISymbol>cancelAllLocalNotifications</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearLaunchNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearLaunchNotification" target=_parent class=ISymbol>clearLaunchNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearLocalNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearLocalNotification" target=_parent class=ISymbol>clearLocalNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearNotificationCenter><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearNotificationCenter" target=_parent class=ISymbol>clearNotificationCenter</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearPushHistory><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearPushHistory" target=_parent class=ISymbol>clearPushHistory</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_createLocalNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.createLocalNotification" target=_parent class=ISymbol>createLocalNotification</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_getApplicationIconBadgeNumber><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getApplicationIconBadgeNumber" target=_parent class=ISymbol>getApplicationIconBadgeNumber</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getLaunchNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getLaunchNotification" target=_parent class=ISymbol>getLaunchNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getPushHistory><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getPushHistory" target=_parent class=ISymbol>getPushHistory</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getPushToken><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getPushToken" target=_parent class=ISymbol>getPushToken</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getPushwooshHWID><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getPushwooshHWID" target=_parent class=ISymbol>getPushwooshHWID</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getRemoteNotificationStatus><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getRemoteNotificationStatus" target=_parent class=ISymbol>getRemoteNotificationStatus</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getTags><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getTags" target=_parent class=ISymbol>getTags</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_onDeviceReady><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.onDeviceReady" target=_parent class=ISymbol>onDeviceReady</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_postEvent><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.postEvent" target=_parent class=ISymbol>postEvent</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_registerDevice><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.registerDevice" target=_parent class=ISymbol>registerDevice</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_setApplicationIconBadgeNumber><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setApplicationIconBadgeNumber" target=_parent class=ISymbol>setApplicationIconBadgeNumber</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setBeaconBackgroundMode><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setBeaconBackgroundMode" target=_parent class=ISymbol>setBeaconBackgroundMode</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setEnableLED><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setEnableLED" target=_parent class=ISymbol>setEnableLED</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setLightScreenOnNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setLightScreenOnNotification" target=_parent class=ISymbol>setLightScreenOnNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setMultiNotificationMode><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setMultiNotificationMode" target=_parent class=ISymbol>setMultiNotificationMode</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setSingleNotificationMode><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setSingleNotificationMode" target=_parent class=ISymbol>setSingleNotificationMode</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setSoundType><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setSoundType" target=_parent class=ISymbol>setSoundType</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setTags><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setTags" target=_parent class=ISymbol>setTags</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setUserId><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setUserId" target=_parent class=ISymbol>setUserId</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setVibrateType><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setVibrateType" target=_parent class=ISymbol>setVibrateType</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_startBeaconPushes><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.startBeaconPushes" target=_parent class=ISymbol>startBeaconPushes</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_startLocationTracking><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.startLocationTracking" target=_parent class=ISymbol>startLocationTracking</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_stopBeaconPushes><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.stopBeaconPushes" target=_parent class=ISymbol>stopBeaconPushes</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_stopLocationTracking><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.stopLocationTracking" target=_parent class=ISymbol>stopLocationTracking</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_unregisterDevice><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.unregisterDevice" target=_parent class=ISymbol>unregisterDevice</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_addToApplicationIconBadgeNumber><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.addToApplicationIconBadgeNumber" target=_parent class=ISymbol>addToApplicationIconBadgeNumber</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_cancelAllLocalNotifications><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.cancelAllLocalNotifications" target=_parent class=ISymbol>cancelAllLocalNotifications</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearLaunchNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearLaunchNotification" target=_parent class=ISymbol>clearLaunchNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearLocalNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearLocalNotification" target=_parent class=ISymbol>clearLocalNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearNotificationCenter><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearNotificationCenter" target=_parent class=ISymbol>clearNotificationCenter</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_clearPushHistory><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.clearPushHistory" target=_parent class=ISymbol>clearPushHistory</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_createLocalNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.createLocalNotification" target=_parent class=ISymbol>createLocalNotification</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_Functions><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.Functions" target=_parent class=ISymbol>Functions</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_getApplicationIconBadgeNumber><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getApplicationIconBadgeNumber" target=_parent class=ISymbol>getApplicationIconBadgeNumber</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getLaunchNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getLaunchNotification" target=_parent class=ISymbol>getLaunchNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getPushHistory><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getPushHistory" target=_parent class=ISymbol>getPushHistory</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getPushToken><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getPushToken" target=_parent class=ISymbol>getPushToken</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getPushwooshHWID><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getPushwooshHWID" target=_parent class=ISymbol>getPushwooshHWID</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getRemoteNotificationStatus><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getRemoteNotificationStatus" target=_parent class=ISymbol>getRemoteNotificationStatus</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_getTags><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.getTags" target=_parent class=ISymbol>getTags</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_onDeviceReady><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.onDeviceReady" target=_parent class=ISymbol>onDeviceReady</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_postEvent><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.postEvent" target=_parent class=ISymbol>postEvent</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_PushNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification" target=_parent class=ISymbol>PushNotification</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_registerDevice><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.registerDevice" target=_parent class=ISymbol>registerDevice</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_setApplicationIconBadgeNumber><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setApplicationIconBadgeNumber" target=_parent class=ISymbol>setApplicationIconBadgeNumber</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setBeaconBackgroundMode><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setBeaconBackgroundMode" target=_parent class=ISymbol>setBeaconBackgroundMode</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setEnableLED><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setEnableLED" target=_parent class=ISymbol>setEnableLED</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setLightScreenOnNotification><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setLightScreenOnNotification" target=_parent class=ISymbol>setLightScreenOnNotification</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setMultiNotificationMode><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setMultiNotificationMode" target=_parent class=ISymbol>setMultiNotificationMode</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setSingleNotificationMode><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setSingleNotificationMode" target=_parent class=ISymbol>setSingleNotificationMode</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setSoundType><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setSoundType" target=_parent class=ISymbol>setSoundType</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setTags><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setTags" target=_parent class=ISymbol>setTags</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setUserId><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setUserId" target=_parent class=ISymbol>setUserId</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_setVibrateType><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.setVibrateType" target=_parent class=ISymbol>setVibrateType</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_startBeaconPushes><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.startBeaconPushes" target=_parent class=ISymbol>startBeaconPushes</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_startLocationTracking><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.startLocationTracking" target=_parent class=ISymbol>startLocationTracking</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_stopBeaconPushes><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.stopBeaconPushes" target=_parent class=ISymbol>stopBeaconPushes</a>, <span class=IParent>PushNotification</span></div></div><div class=SRResult id=SR_stopLocationTracking><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.stopLocationTracking" target=_parent class=ISymbol>stopLocationTracking</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,20 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_unregisterDevice><div class=IEntry><a href="../files/PushNotification-js.html#PushNotification.unregisterDevice" target=_parent class=ISymbol>unregisterDevice</a>, <span class=IParent>PushNotification</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
15
- document.getElementById("Loading").style.display="none";
16
- document.getElementById("NoMatches").style.display="none";
17
- var searchResults = new SearchResults("searchResults", "HTML");
18
- searchResults.Search();
19
- --></script></div><script language=JavaScript><!--
20
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
@@ -1,15 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
-
3
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
-
6
- <!-- Generated by Natural Docs, version 1.52 -->
7
- <!-- http://www.naturaldocs.org -->
8
-
9
- <!-- saved from url=(0026)http://www.naturaldocs.org -->
10
-
11
-
12
-
13
-
14
- <div id=Index><div class=SRStatus id=NoMatches>No Matches</div></div><script language=JavaScript><!--
15
- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>