Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Raghav/update #35

Merged
merged 2 commits into from
Jul 10, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@

</platform>

<!-- windows8 -->
<platform name="windows8">
<js-module src="src/windows8/PushPluginProxy.js" name="PushPlugin">
<!-- windows -->
<platform name="windows">
<js-module src="src/windows/PushPluginProxy.js" name="PushPlugin">
<merges target="" />
</js-module>
</platform>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ var myApp = {};
var pushNotifications = Windows.Networking.PushNotifications;

var createNotificationJSON = function (e) {
var result = {};
result.message = ''; //Added to identify callback as notification type in the API in case where notification has no message
var result = { message: '' }; //Added to identify callback as notification type in the API in case where notification has no message
var notificationPayload;

switch (e.notificationType) {
Expand Down