1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-20 12:21:35 +02:00

Switch to Hugo.

No more Ruby dependency and most important more than 10 times less build time (at least on Windows)!
This commit is contained in:
XhmikosR
2019-01-08 18:33:28 +02:00
parent 6aa475c82e
commit d95d30029f
310 changed files with 3874 additions and 3186 deletions

29
site/static/sw.js Normal file
View File

@@ -0,0 +1,29 @@
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++
/* eslint-disable max-nested-callbacks */
(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)
}
})
})
}
})
})
}
})()