mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
10 lines
132 B
JavaScript
10 lines
132 B
JavaScript
|
"use strict"
|
||
|
|
||
|
this.onmessage = function (event) {
|
||
|
switch (event.data) {
|
||
|
case "ping":
|
||
|
postMessage("pong");
|
||
|
break;
|
||
|
}
|
||
|
};
|