Here's something to get you started:
1. Put the following in your 'backstage' tiddler. Note that this is pretty
much what you had with some code added. You will need the
InlineJavascriptPlugin* to make this work.
<html>
<div id="backstageCloak"></div>
<div id="backstageButton" style="display:none;visibility:hidden;"></div>
<div id="backstageArea"><div id="backstageToolbar"></div></div>
<div id="backstage">
<div id="backstagePanel"></div>
</div>
</html>
<script>backstage.init();backstage.show();</script>
2. Put the following in a tiddler tagged 'systemConfig':
jQuery('#backstageArea').remove();
jQuery('#backstageButton').remove();
jQuery('#backstage').remove();
jQuery('#backstageCloak').remove();
The plugin you create removes the original backstage. The code at the end of
your tiddler re-instantiates the backstage every time the tiddler is
displayed, and makes the backstage visible. I've added styling to hide the
backstageButton, because it seems like it's not necessary in this type of
scenario.
I tried this out in Safari and it works and looks ok in the default
TiddlyWiki theme. You may have to play with the CSS to make it look like
what you want.
Regards,
axs
*http://tiddlytools.com/#InlineJavascriptPlugin
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.