Closed GoogleCodeExporter closed 9 years ago
I have been able to reproduce the problem, using a modified version of Demo 4.
I have attached this to the issue. This is a very small demo, but it reproduces
the problem exactly.
I will have to look into this problem further before I can say what the
solution would be.
Original comment by borkh...@gmail.com
on 6 May 2013 at 9:15
Attachments:
Thanks for taking care.
I have looked at the generated html, and if all pictures are grabbed and put in
the same slideshow, it is because plugin is expected to find a unique album per
page. All images are certainly found by a global selector. Something like
$(".pwi_photo") but in the code each album have a unique container id. ie in my
example
<div id="pwi_1367911453950" class="pwi_container">
<div class="pwi_photo" style="cursor: pointer; margin: 5px; height:
536px;">...</div>
<div class="pwi_photo" style="display: none; margin: 5px; height:
536px;">...</div>
<div class="pwi_photo" style="display: none; margin: 5px; height: 536px;">
...
<div id="pwi_1367911453957" class="pwi_container">
<div class="pwi_photo" style="cursor: pointer; margin: 5px; height:
536px;">...</div>
<div class="pwi_photo" style="display: none; margin: 5px; height:
536px;">...</div>
...
So may be we should use a different selector such as
$("#PWI_CONTAINER_ID").children(".pwi_photo")
Regards
Original comment by lescheminsdeleau
on 7 May 2013 at 7:44
Issue is fixed in SVN version 323. Pleas add the following to your settings
when using this version:
ownRelTag: $(this).attr("id")
This makes sure that the rel-tags used by the viewer are unique between
instances.
Original comment by borkh...@gmail.com
on 7 May 2013 at 6:50
This fix is working like a charm. Thanks for the quick resolution
Norbert
Original comment by lescheminsdeleau
on 8 May 2013 at 8:13
Original issue reported on code.google.com by
lescheminsdeleau
on 6 May 2013 at 7:14