Hey Jaymz,
I see the problem. Will fix this in the next beta. Now please go to:
media/com_hotspots/js/hotspots.js - line 41
$('btn_close_route').addEvent('click', function(e){
e = new Event(e);
slideroute.slideOut();
e.stop();
});
$('btn_open_route').addEvent('click', function(e){
e = new Event(e);
slideroute.toggle();
e.stop();
});
change it to
if(('btn_close_route') && $('btn_open_route')) {
$('btn_close_route').addEvent('click', function(e){
e = new Event(e);
slideroute.slideOut();
e.stop();
});
$('btn_open_route').addEvent('click', function(e){
e = new Event(e);
slideroute.toggle();
e.stop();
});
}
Did you make changes to the template??? It seems that your template is missing a div with id btn_open_route?