From 83b7afc6141f4148e8ef4e0eefa97d82134d98bb Mon Sep 17 00:00:00 2001 From: ov2k Date: Mon, 10 Jun 2024 18:08:38 -0400 Subject: [PATCH] Work around iOS viewport bug. See https://github.com/lokesh/lightbox2/issues/753. --- issue753.md | 23 +++++++++++++++++++++++ lightbox2/dist/js/lightbox-plus-jquery.js | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 issue753.md diff --git a/issue753.md b/issue753.md new file mode 100644 index 0000000..8f391bd --- /dev/null +++ b/issue753.md @@ -0,0 +1,23 @@ +--- +title: "Norman Soong's Artwork" +--- + + + + +{% for series in site.data.series %} + +### {{ series.name }} + +{% include thumb-list.html %} + +{% endfor %} + + + + + diff --git a/lightbox2/dist/js/lightbox-plus-jquery.js b/lightbox2/dist/js/lightbox-plus-jquery.js index 077520b..063955a 100644 --- a/lightbox2/dist/js/lightbox-plus-jquery.js +++ b/lightbox2/dist/js/lightbox-plus-jquery.js @@ -11407,7 +11407,7 @@ return jQuery; self.$lightbox.find('.lb-nextLink').height(newHeight); // Set focus on one of the two root nodes so keyboard events are captured. - self.$overlay.trigger('focus'); + //self.$overlay.trigger('focus'); self.showImage(); }