mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
13 lines
201 B
JavaScript
13 lines
201 B
JavaScript
"use strict";
|
|
|
|
this.onmessage = function (event) {
|
|
switch (event.data) {
|
|
case "ping":
|
|
setImmediate(function () {
|
|
postMessage("pong1");
|
|
});
|
|
postMessage("pong2");
|
|
break;
|
|
}
|
|
};
|