mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 16:58:03 -05:00
9 lines
337 B
JavaScript
9 lines
337 B
JavaScript
var PushNotification = function() {}
|
|
|
|
// call this to register for push notifications
|
|
PushNotification.prototype.register = function(success, fail, options) {
|
|
PhoneGap.exec(success, fail, "PushNotification", "registerAPN", options);
|
|
};
|
|
|
|
if(!window.plugins) window.plugins = {};
|
|
window.plugins.pushNotification = new PushNotification(); |