Hey Nick,
Well, you can go to media/com_hotspots/js/modules/menu.js line 354
if(!this.menuClosed) {
this.slideMenu.slideOut();
if (this.slideMenu.open) {
window.fireEvent('menuOpen');
}
}
change it to:
if(!this.menuClosed) {
// this.slideMenu.slideOut();
if (this.slideMenu.open) {
// window.fireEvent('menuOpen');
}
}
The line number is from the latest dev release, but the code is the same in 3.1 -> so if you don't find the code on that line, just look around and you'll find it.
The only way to open the menu now would be by clicking on the menu button.
Daniel