Skip to content

Instantly share code, notes, and snippets.

@jeffgca
Forked from wbamberg/gist:1045274
Created June 24, 2011 17:55
Show Gist options
  • Save jeffgca/1045300 to your computer and use it in GitHub Desktop.
Save jeffgca/1045300 to your computer and use it in GitHub Desktop.
some panel code example from Bamberg.
const widgets = require("widget");
const data = require("self").data;
const panel = require("panel");
var panelScript = "on('message', function(message) {" +
" console.log('receiving ' + message);" +
" }); "
var wid = widgets.Widget({
id: "some_menu",
label: "My Widget Label",
contentURL: data.url("icon.png"),
contentScriptWhen: "ready",
panel: panel.Panel({
// onMessage: function(message) {
// console.log(message);
// },
contentScript: panelScript,
allow: true,
width: 170,
height: 250,
contentScriptWhen: "ready"
}),
onClick : function() {
console.log("sending the message");
wid.panel.postMessage("the message");
wid.panel.show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment