1. Geo Print Vest
Shipping is on Us with a Purchase of $75 or More!

Geo Print Vest

Write a Review
Your Price: $30.00
Part Number: 5241
Availability: In Stock. 1
In-store Pickup Available

Send to:

*We'll ask for shipping info at checkout
Geo Print Vest

Material
Polyester 100%

Recently Viewed Items

TOP
0 Items
self.addEventListener('push', function(event) { const payload = event.data.json(); const notification = payload.data; const notificationTitle = notification['title']; let notificationOptions = { body: notification['body'], } if (event.data) { notificationOptions.icon = notification['icon'] notificationOptions.data = { click_action: notification['click_action'] }; } event.waitUntil( self.registration.showNotification(notificationTitle, notificationOptions) ); }); self.addEventListener('notificationclick', function(event) { event.notification.close(); var url = event.notification.data.click_action; if(url) { event.waitUntil( clients.openWindow(url) ); } });