Hiding Places and Objects

Melarnos
25 Jul 2016, 16:28

Hi everyone!

There are many posts about modifing the GUI, but there's a specific point that doesn't seem to have an answer.
That is :

Hiding the Compass Pane works, thanks to this wonderful code (many thanks to ThePixie):
JS.eval ("$('#compassLabel').css('display', 'none')")
JS.eval ("$('#compassAccordion').css('display', 'none')")

However hiding any other pane using the same method doesn't seem to work, for example :
JS.eval ("$('#PlacesObjectsLabel').css('display', 'none')")
JS.eval ("$('#PlacesObjectsAccordion').css('display', 'none')")

Is there a solution?

Thanks! :)


The Pixie
25 Jul 2016, 18:37

Lower case P

JS.eval ("$('#placesObjectsLabel').css('display', 'none')")
JS.eval ("$('#placesObjectsAccordion').css('display', 'none')")

Melarnos
25 Jul 2016, 20:16

Yay! :)
I was positive I had already tried this... but apparently not :P

Thanks (again) The Pixie! You rock! :)