1 2 3 4 5 6 7 8
onactivate = function (event) { var promise = new Promise(function (res) { setTimeout(function () { res(); }, 500); }); event.waitUntil(promise); };