Please tell me how I can remove the arrow button that closes the sidebar; I want the sidebar always open.
While you could use a style to hide the UI bar's stow/unstow toggle button, you're going to need to use JavaScript to accomplish your other request, so you may as well do both at the same time.
That's, honestly, kind of a bizarre request. Still, it's doable with a little JavaScript.
You may accomplish both by adding the following to your scripts: (Twine 1: goes in a script-tagged passage; Twine 2: goes in Story JavaScript)
prehistory['no-stow-and-disable-debug'] = function (taskname) {
// This should be a single use task.
delete prehistory[taskname];
// Remove the UI bar's stow/unstow toggle button.
$('#ui-bar-toggle').remove();
// Disable Test mode's debug views initially.
DebugView.disable();
};
Comments
That's, honestly, kind of a bizarre request. Still, it's doable with a little JavaScript.
You may accomplish both by adding the following to your scripts: (Twine 1: goes in a script-tagged passage; Twine 2: goes in Story JavaScript)