Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to disable the previous button for the first image and the… #427

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/featherlight.gallery.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
display:none;
}

/* Hide disabled navigation */
.featherlight-no-wrap-around.featherlight-last-slide .featherlight-next,
.featherlight-no-wrap-around.featherlight-first-slide .featherlight-previous {
display: none;
}

/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
Expand Down
20 changes: 18 additions & 2 deletions src/featherlight.gallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,11 @@
.append(self.createNavigation('previous'))
.append(self.createNavigation('next'));

self.$instance
.toggleClass(self.namespace+'-no-wrap-around', !self.allowWrapAround)
return _super(event);
},
beforeContent: function(_super, event) {
afterContent: function(_super, event) {
var index = this.currentNavigation();
var len = this.slides().length;
this.$instance
Expand Down Expand Up @@ -135,6 +137,7 @@
nextIcon: '▶', /* Code that is used as next icon */
galleryFadeIn: 100, /* fadeIn speed when image is loaded */
galleryFadeOut: 300, /* fadeOut speed before image is loaded */
allowWrapAround: true, /* set to false to disable previous on first image and next on last image */

slides: function() {
if (this.filter) {
Expand All @@ -157,7 +160,20 @@
source = self.slides(),
len = source.length,
$inner = self.$instance.find('.' + self.namespace + '-inner');
index = ((index % len) + len) % len; /* pin index to [0, len[ */
// pin index to [0, len[
if (self.allowWrapAround) {
index = ((index % len) + len) % len;
} else {
if (index < 0) {
index = 0;
} else if (index >= len) {
index = len - 1;
}
}

if (index === self.currentNavigation()) {
return;
}

this.$instance.addClass(this.namespace+'-loading');
self.$currentTarget = source.eq(index);
Expand Down