Advertisement
Guest User

Событие подписки на пуши realbig

a guest
Mar 21st, 2019
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. const subscribeOptions = {
  2. userVisibleOnly: true,
  3. applicationServerKey: rbPSurlBase64ToUint8Array(publickKey)
  4. };
  5. navigator.serviceWorker.ready.then(function(serviceWorkerRegistration)
  6. {
  7. serviceWorkerRegistration.pushManager.subscribe(subscribeOptions).then(
  8. function(pushSubscription) {
  9. setTimeout(function(){console.log('success');},1000)
  10.  
  11. }, function(error) {
  12. console.log('error1');
  13. }
  14. );
  15.  
  16. }
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement