Topic: "open_url" always link, also when you do not click on the actual image

Hi,
I recently set up the pro gallery, it looks nice.

this is a page: http://walther.siksma.nl/fotoset/72157631933487505
and the feed: http://walther.siksma.nl/photoservice.a … 1933487505

When I click left from the first image (or right next to the last image) it will link to the image url. I want the link to be activated only when I click the actual image.

Now, clicking through a gallery fast by pressing the next image button repeatingly, it will always end in a click on the image link of the series. (same goes for navigating to the left of course).
I just want it to end navigating, redirecting to the image only when I click on the actual image, not when I click next to the image.

This how I setup the gallery:

    Function GetSetJuiceBox(id As String) As String
        Dim result As String = "<script src=""jbcore/juicebox.js""></script>"
        result += "<script>"
        result += "new juicebox({"
        result += "containerId: ""juicebox-container"","
        result += "galleryWidth: ""960"","
        result += "galleryHeight: ""600"","
        result += "enableAutoPlay: ""TRUE"","
        result += "autoPlayOnLoad: ""TRUE"","
        result += "autoLooping: ""TRUE"","
        result += "imageClickmode: ""OPEN_URL"","
        result += "backgroundColor: ""#191819"","
        result += "configUrl: ""PhotoService.aspx?setid=" & id & "&title=""     });"
        result += "</script>"
        result += "<div id=""juicebox-container""></div>"
        Return result
    End Function

Can I prevent this behaviour in configuration some way , or can it be fixed in another way?
thnx
Walther

Re: "open_url" always link, also when you do not click on the actual image

It is not possible to change the hit area of the imageClickMode="OPEN_URL".
However, a suitable workaround might be to set enableLooping="TRUE". Then there will always be an image navigation button to the left of the first image and to the right of the last image.

Re: "open_url" always link, also when you do not click on the actual image

Thank you, that's better!

Another question: when I open a set like this http://walther.siksma.nl/fotoset/72157631392940246 in the PC browser it's ok.
However when I open exactly the same set on iPad or iPhone (wifi, not 3g), it goes wrong when I click on Expand Gallery:
then it will link to http://walther.siksma.nl/jbcore/full.html in stead of expanding

Server side for me there is no difference, I render exactly the same code.
Any tips appreciated.
thnx again

Re: "open_url" always link, also when you do not click on the actual image

Please see the description of the expandInNewPage configuration option in the General Options section of the Config Options page (and this link for further details).