mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-21 15:58:47 +00:00
11 lines
275 B
JavaScript
11 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));
|
|
};
|