jackwanders/GalleryView

Auto Open the show_captions

Opened this issue · 1 comments

Hi all,
I just try to find the solution to automatically open the show_captions.
even I've already set the show_captions : true, but it's not automatically open when galleryview load.
it's just show an image but not open the captions at all....

any solution for this?
thank you...

I just get the answer, but I don't know it's correct or not :

on my jquery.galleryview-3.0-dev.js I change this code :

dom.gv_showOverlay.bind('click.galleryview',function(){
if(self.overlayVisible) {
self.hideOverlay(250);
} else {
self.showOverlay(250);
}
});

to :

self.showOverlay(250);
dom.gv_showOverlay.bind('click.galleryview',function(){
if(self.overlayVisible) {
self.hideOverlay(250);
} else {
self.showOverlay(250);
}
});

it's work for me :D