|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 9.2 KiB |
@ -0,0 +1,40 @@ |
|||
{ |
|||
"name": "OSS110METZ", |
|||
"short_name": "O1M", |
|||
"icons": [{ |
|||
"src": "img/icon/android-icon-36x36.png", |
|||
"sizes": "36x36", |
|||
"type": "image\/png", |
|||
"density": "0.75" |
|||
}, { |
|||
"src": "img/icon/android-icon-48x48.png", |
|||
"sizes": "48x48", |
|||
"type": "image\/png", |
|||
"density": "1.0" |
|||
}, { |
|||
"src": "img/icon/android-icon-72x72.png", |
|||
"sizes": "72x72", |
|||
"type": "image\/png", |
|||
"density": "1.5" |
|||
}, { |
|||
"src": "img/icon/android-icon-96x96.png", |
|||
"sizes": "96x96", |
|||
"type": "image\/png", |
|||
"density": "2.0" |
|||
}, { |
|||
"src": "img/icon/android-icon-144x144.png", |
|||
"sizes": "144x144", |
|||
"type": "image\/png", |
|||
"density": "3.0" |
|||
}, { |
|||
"src": "img/icon/android-icon-192x192.png", |
|||
"sizes": "192x192", |
|||
"type": "image\/png", |
|||
"density": "4.0" |
|||
}], |
|||
"lang": "fr-FR", |
|||
"start_url": "/", |
|||
"display": "standalone", |
|||
"background_color": "black", |
|||
"theme_color": "black" |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
var cacheName = 'o1m'; |
|||
var filesToCache = [ |
|||
'/', |
|||
'/index.html' |
|||
]; |
|||
|
|||
self.addEventListener('install', function(e) { |
|||
e.waitUntil( |
|||
caches.open(cacheName).then(function(cache) { |
|||
return cache.addAll(filesToCache); |
|||
}) |
|||
); |
|||
}); |
|||
|
|||
self.addEventListener('fetch', function(e) { |
|||
e.respondWith( |
|||
caches.match(e.request).then(function(response) { |
|||
return response || fetch(e.request); |
|||
}) |
|||
); |
|||
}); |
|||