Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $.ajax({
- type: "POST",
- url: "mypage.php",
- data:{ //data user and pass
- },
- dataType: 'json',
- cache: false,
- success: function(data)
- {
- function subscribe() {
- OneSignal.push(["registerForPushNotifications"]);
- event.preventDefault();
- }
- var OneSignal = OneSignal || [];
- OneSignal.push(function() {
- if (!OneSignal.isPushNotificationsSupported()) {
- return;
- }
- OneSignal.isPushNotificationsEnabled(function(isEnabled) {
- if (isEnabled) {
- // The user is subscribed to notifications
- // Don't show anything
- } else {
- subscribe();
- }
- });
- });
- }
- });
Add Comment
Please, Sign In to add comment