Hello,
I need to make the hight of the map with the mobile phone view larger.
I changed the two files :
\media\com_hotspots\js\v4\apps\map\show\show_view.js
\media\com_hotspots\js\v4\apps\menu\show\show_view.js
From
if($(document.body).hasClass('hs-small-device')) {
this.$el.css('width', '100%');
if ($(window).height() < 480) {
height = 150;
TO
if($(document.body).hasClass('hs-small-device')) {
this.$el.css('width', '100%');
if ($(window).height() < 480) {
height = 400;
But nothing happed. Can you help me?