diff --git a/tiddlyfox/extension/config_build.sh b/tiddlyfox/extension/config_build.sh index b6ee563ee..9b2898d0a 100644 --- a/tiddlyfox/extension/config_build.sh +++ b/tiddlyfox/extension/config_build.sh @@ -2,7 +2,7 @@ # Build config for the build script, build.sh. Look there for more info. -APP_NAME=helloworld +APP_NAME=tiddlyfox CHROME_PROVIDERS="content locale skin" CLEAN_UP=1 ROOT_FILES="readme.txt" diff --git a/tiddlyfox/extension/content/hello.xul b/tiddlyfox/extension/content/hello.xul index 61b34822d..fba00cc9a 100644 --- a/tiddlyfox/extension/content/hello.xul +++ b/tiddlyfox/extension/content/hello.xul @@ -1,6 +1,6 @@ - + diff --git a/tiddlyfox/extension/content/overlay.js b/tiddlyfox/extension/content/overlay.js index 7f2854bc8..579e06383 100644 --- a/tiddlyfox/extension/content/overlay.js +++ b/tiddlyfox/extension/content/overlay.js @@ -1,12 +1,12 @@ -var HelloWorld = { +var TiddlyFox = { onLoad: function() { // initialization code this.initialized = true; }, onMenuItemCommand: function() { - window.open("chrome://helloworld/content/hello.xul", "", "chrome"); + window.open("chrome://tiddlyfox/content/hello.xul", "", "chrome"); } }; -window.addEventListener("load", function(e) { HelloWorld.onLoad(e); }, false); +window.addEventListener("load", function(e) { TiddlyFox.onLoad(e); }, false); diff --git a/tiddlyfox/extension/content/overlay.xul b/tiddlyfox/extension/content/overlay.xul index 03d296ee9..dd3c69358 100644 --- a/tiddlyfox/extension/content/overlay.xul +++ b/tiddlyfox/extension/content/overlay.xul @@ -1,12 +1,12 @@ - - - + +