Location Bar (fullscreen)

Svarii
04 Oct 2018, 22:31(Desktop Version)
I have unchecked the 'show location bar' option in the game object under the interface tab.
Using the retro theme.
Works great except for one thing.
When I put the game into fullscreen it comes back (minus the text)
Can this be fixed?

Dcoder
04 Oct 2018, 23:16http://docs.textadventures.co.uk/quest/ui-javascript.html
Try:
JS.uiHide("#status")
and JS.uiShow("#status")

Svarii
04 Oct 2018, 23:41I figured it out.
I had to check show location bar, then I got the option to uncheck classic location style, then I unchecked show location bar again and it no longer shows in full screen.
The JS didn't work (or I used it wrong)
Thanks.

Dcoder
05 Oct 2018, 00:58You're right, it should be:
JS.uiHide("#location")
and JS.uiShow("#location")
Good you worked something out.