Slide 45
Slide 45 text
ON THE PAGE
navigator.serviceWorker.ready.then(function(reg) {
const url = "https://example.com/largeFile.mp3";
reg.backgroundFetch.fetch('downloads', [url], {
icons: [],
title: 'Downloading largeFile.mp3',
totalDownloadSize: 1048576
});
});
01.
02.
03.
04.
05.
06.
07.
08.
@philnash