When viewing the slideshow in full screen mode, you can click on a small tray at the bottom of the screen to display thumbnails. After viewing the thumbnails and clicking one one, the tray collapses! You have to keep opening it. It there a way to make it permanently visible?

Thanks

Comments

grasmash’s picture

Title: Fullscreen - keep thumbnails on screen after click » Found the code

I removed these lines from galleria.fullscreen.js:

87        this.bind(Galleria.THUMBNAIL, function(e) {
              $(e.thumbTarget).click(function() {
                  if (OPEN) {
                      tab.click();
                  }
              });
93        });

Still have to figure out how to make it load open by default.

grasmash’s picture

Title: Found the code » Fixed default state

Ok, I managed to get the thumb tray to load as open by default.

added: var load_count = 0; after var POS = 0;
added: if (load_count == 0 && !OPEN) { tab.click(); load_count = 1; } after this.$('info,iefix').toggle(this.hasInfo());