Skip to content

Instantly share code, notes, and snippets.

@davidillsley
Created May 12, 2011 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidillsley/969366 to your computer and use it in GitHub Desktop.
Save davidillsley/969366 to your computer and use it in GitHub Desktop.
const widgets = require("widget");
var widget = widgets.Widget({
id: "button test",
label: "Button Test",
content: "<html><body><form><input value='Press Me!' type='button' id='button'></form></body></html>",
contentScript: "document.getElementById(\"button\").addEventListener(\"click\",function(){window.alert(\"Clicked\");},false);",
width: 100
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment