Skip to content

Commit 3a5c153

Browse files
committed
Add workaround to avoid UI elements added multiple times.:
1 parent 074a6eb commit 3a5c153

3 files changed

+13
-5
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ const fullscreenPlugin = new PhotoSwipeFullscreen(lightbox, {
3838

3939
## Changelog
4040

41+
### 1.0.3
42+
43+
Added workaround to avoid fullscreen button registered multiple times when PhotoSwipe is triggering the callback multiple times.
44+
4145
### 1.0.2
4246

4347
Added option to translate the UI label.

photoswipe-fullscreen.esm.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* PhotoSwipe fullscreen plugin v1.0.2
2+
* PhotoSwipe fullscreen plugin v1.0.3
33
*
44
* Inspired by https://github.com/dimsemenov/PhotoSwipe/issues/1759
55
*
@@ -16,9 +16,8 @@ class PhotoSwipeFullscreen {
1616
...defaultOptions,
1717
...options
1818
};
19-
2019
this.lightbox = lightbox;
21-
20+
this.uiInit = false;
2221
this.lightbox.on('init', () => {
2322
this.initPlugin();
2423
});
@@ -35,6 +34,10 @@ class PhotoSwipeFullscreen {
3534
'</svg>';
3635

3736
if (this.fullscreenAPI) {
37+
if (this.uiInit) {
38+
return;
39+
}
40+
this.uiInit = true;
3841
this.lightbox.on('uiRegister', () => {
3942
this.pswp.ui.registerElement({
4043
name: 'fullscreen-button',

photoswipe-fullscreen.esm.min.js

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)