mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
301 B
JavaScript
11 lines
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 });
|
|
});
|
|
};
|