mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
var active = true;
|
|
onmessage = function(e) {
|
|
if (e.data == 'finish') {
|
|
active = false;
|
|
return;
|
|
}
|
|
|
|
if (active) {
|
|
postMessage(navigator.languages);
|
|
}
|
|
}
|