Hi Itai,
I’m using is a iPhone 6 with iOS 11.2.5. I just checked the site. It get’s stuck on this one image now (see below). I also checked the site in Safari using a MacBook Pro (10.12.6), it has the same issue as my phone! You cannot scroll through the photos and when clicking on the buttons nothing happens.
When I use Chrome it works just fine! I can scroll through the photos and clicking the buttons takes me to another gallery.
I checked preview using the editor in Chrome, no problem. It has the same images as yesterday and works fine (I didn’t change anything in the mean time.
Then I checked preview in the editor using Safari, and it has the same issue! The view get’s stuck on this one photo.
There is something very strange going on. I had trouble yesterday with the code working in Safari; the photos wouldn’t show up correctly. I checked it over and over again and couldn’t figure out what was wrong. Then I switched to Chrome and everything worked like a charm.
It’s a very simple code (see below), with the galleries hidden on load and simply placed on top of each other
I would really appreciate it if you could look into this and see what is wrong.
export function box1_click(event, $w) {
$w(“#gallery1”).show();
$w(“#gallery2”).hide();
$w(“#gallery3”).hide();
$w(“#gallery4”).hide();
$w(“#gallery5”).hide();
$w(“#gallery6”).hide();
}
export function box2_click(event, $w) {
$w(“#gallery1”).hide();
$w(“#gallery2”).show();
$w(“#gallery3”).hide();
$w(“#gallery4”).hide();
$w(“#gallery5”).hide();
$w(“#gallery6”).hide();
}
export function box3_click(event, $w) {
$w(“#gallery1”).hide();
$w(“#gallery2”).hide();
$w(“#gallery3”).show();
$w(“#gallery4”).hide();
$w(“#gallery5”).hide();
$w(“#gallery6”).hide();
}
export function box4_click(event, $w) {
$w(“#gallery1”).hide();
$w(“#gallery2”).hide();
$w(“#gallery3”).hide();
$w(“#gallery4”).show();
$w(“#gallery5”).hide();
$w(“#gallery6”).hide();
}