mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
c45b0a7641
Start with Mozilla's HelloWorld sample Firefox extension
13 lines
310 B
JavaScript
13 lines
310 B
JavaScript
var HelloWorld = {
|
|
onLoad: function() {
|
|
// initialization code
|
|
this.initialized = true;
|
|
},
|
|
|
|
onMenuItemCommand: function() {
|
|
window.open("chrome://helloworld/content/hello.xul", "", "chrome");
|
|
}
|
|
};
|
|
|
|
window.addEventListener("load", function(e) { HelloWorld.onLoad(e); }, false);
|