mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 03:08:38 +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);
|
|
}
|
|
}
|