@inizializzazione push plugin
This commit is contained in:
parent
28a788e219
commit
fa341173e9
1 changed files with 6 additions and 13 deletions
|
@ -849,27 +849,20 @@ function onDeviceReadyPush() {
|
||||||
// console.log(JSON.stringify(registration));
|
// console.log(JSON.stringify(registration));
|
||||||
var url = "https://xm.bus.pm/api/d/c?device=" + registration.registrationId;
|
var url = "https://xm.bus.pm/api/d/c?device=" + registration.registrationId;
|
||||||
$.get(url, function( data ) {
|
$.get(url, function( data ) {
|
||||||
// alert(data);
|
console.log(JSON.stringify(data));
|
||||||
// console.log(data);
|
console.log(JSON.stringify(data));
|
||||||
// console.log(data);
|
|
||||||
// console.log(data);
|
|
||||||
// console.log(data);
|
|
||||||
// $(".hiddendiv").append('<li>REQ A2A: '+ data +'</li>');
|
// $(".hiddendiv").append('<li>REQ A2A: '+ data +'</li>');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
push.on('notification', function(data) {
|
push.on('notification', function(data) {
|
||||||
// alert(data.message);
|
console.log(JSON.stringify(data));
|
||||||
// data.message,
|
console.log(JSON.stringify(data));
|
||||||
// data.title,
|
|
||||||
// data.count,
|
|
||||||
// data.sound,
|
|
||||||
// data.image,
|
|
||||||
// data.additionalData
|
|
||||||
});
|
});
|
||||||
|
|
||||||
push.on('error', function(e) {
|
push.on('error', function(e) {
|
||||||
// e.message
|
console.log(JSON.stringify(e));
|
||||||
|
console.log(JSON.stringify(e));
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue