Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 460 Bytes

EXAMPLES.md

File metadata and controls

32 lines (28 loc) · 460 Bytes

Quick Example

var push = PushNotification.init({
	android: {
		senderID: "12345679"
	},
	ios: {
		alert: "true",
		badge: "true",
		sound: "true"
	},
	windows: {}
});

push.on('registration', function(data) {
	// data.registrationId
});

push.on('notification', function(data) {
	// data.message,
	// data.title,
	// data.count,
	// data.sound,
	// data.image,
	// data.additionalData
});

push.on('error', function(e) {
	// e.message
});