Created
April 16, 2010 13:30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.backstageTasks = []; | |
config.tasks.user = { | |
text: "user", | |
tooltip: "user control panel", | |
content: "<<tiddler BackstageUser>>" | |
}; | |
config.backstageTasks.push("user"); | |
config.tasks.space = { | |
text: "space", | |
tooltip: "space control panel", | |
content: "<<tiddler BackstageSpace>>" | |
}; | |
config.backstageTasks.push("space"); | |
config.tasks.tiddlers = { | |
text: "tiddlers", | |
tooltip: "tiddlers control panel", | |
content: "<<tiddler BackstageTiddlers>>" | |
}; | |
config.backstageTasks.push("tiddlers"); | |
config.tasks.options = { | |
text: "options", | |
tooltip: "TiddlyWiki options", | |
content: "<<tiddler BackstageOptions>>" | |
}; | |
config.backstageTasks.push("options"); | |
config.tasks.login = { | |
text: "login", | |
tooltip: "TiddlySpace login", | |
content: "<<tiddler BackstageLogin>>" | |
}; | |
if(config.options.txtUserName == "GUEST") { | |
config.backstageTasks.push("login"); | |
}; | |
backstage.init(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: TiddlySpaceBackstagePlugin | |
modifier: FND | |
tags: systemConfig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recipe: $TW_ROOT/core/tiddlywiki.html.recipe | |
tiddler: backstage.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment