Twine Version: 2.9.2
sugarcube: 2.37.3
Greetings.
How can I delete the both titles in the sidebar? Only the text. I tried with some codes in JavaScript, but it seems the original code is just too “strong” to be deleted.
From original code:
in l10n/string.js: savesTitle : 'Saves',
Dialog.create(L10n.get("savesTitle"),"saves");
I wish to delete “saves”:
in l10/string.js: savesTitle : '',
Dialog.create(L10n.get("savesTitle"),"");
I had tried with Dialog.empty(), but I wonder if I thought correctly. Yeah, how can I suppress this code line?