mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 12:51:25 +00:00
6 lines
87 B
JavaScript
6 lines
87 B
JavaScript
var counter = 0;
|
|
onconnect = function(evt) {
|
|
evt.ports[0].postMessage(++counter);
|
|
}
|
|
|