2018-12-23 14:41:11 +02:00
|
|
|
/* eslint-disable */
|
2017-10-19 12:22:00 -07:00
|
|
|
|
2018-12-23 14:41:11 +02:00
|
|
|
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
|
|
|
|
// IT'S ALL JUST JUNK FOR OUR DOCS!
|
|
|
|
// ++++++++++++++++++++++++++++++++++++++++++
|
2018-04-09 09:02:59 -07:00
|
|
|
|
2018-12-23 14:41:11 +02:00
|
|
|
(function () {
|
|
|
|
'use strict'
|
|
|
|
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
window.addEventListener('load', function () {
|
|
|
|
navigator.serviceWorker.getRegistrations().then(function (registrations) {
|
|
|
|
for (var registration of registrations) {
|
|
|
|
registration.unregister()
|
|
|
|
.then(function () {
|
|
|
|
return self.clients.matchAll()
|
|
|
|
})
|
|
|
|
.then(function (clients) {
|
|
|
|
clients.forEach(function (client) {
|
|
|
|
if (client.url && 'navigate' in client) {
|
|
|
|
client.navigate(client.url)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2017-10-19 12:22:00 -07:00
|
|
|
}
|
2018-12-23 14:41:11 +02:00
|
|
|
}())
|