mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 16:30:29 +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;
|
|
}
|
|
};
|