mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
10 lines
275 B
JavaScript
10 lines
275 B
JavaScript
var {Ci} = require("chrome");
|
|
var Services = require("Services");
|
|
|
|
exports.setupParent = function ({mm, prefix}) {
|
|
let args = [
|
|
!!mm.QueryInterface(Ci.nsIMessageSender),
|
|
prefix
|
|
];
|
|
Services.obs.notifyObservers(null, "test:setupParent", JSON.stringify(args));
|
|
};
|