зеркало из https://github.com/mozilla/gecko-dev.git
11 строки
301 B
JavaScript
11 строки
301 B
JavaScript
|
onmessage = function(e) {
|
||
|
self.clients.matchAll().then(function(res) {
|
||
|
if (!res.length) {
|
||
|
dump("Error: no clients are currently controlled.\n");
|
||
|
return;
|
||
|
}
|
||
|
res[0].postMessage(indexedDB ? { available: true } :
|
||
|
{ available: false });
|
||
|
});
|
||
|
};
|