Skip to content

Commit b2031b9

Browse files
committed
- Merging dev branch 4.0.32
1 parent 1fce9b8 commit b2031b9

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

dist/fullpage.extensions.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/fullpage.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5365,7 +5365,8 @@
53655365

53665366
if (!fixedSections.length) {
53675367
if (isTouchDevice && isFormElementFocused()) {
5368-
clearTimeout(g_scrollId2);
5368+
// Exit early to avoid fixing the section while interacting with form elements
5369+
return;
53695370
} else {
53705371
fitToSection();
53715372
}
@@ -5376,7 +5377,10 @@
53765377
}
53775378

53785379
function isFormElementFocused() {
5379-
return ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON'].includes(doc.activeElement.tagName);
5380+
var focusedElement = document.activeElement;
5381+
if (!focusedElement) return false; // Include only elements that trigger the keyboard on mobile
5382+
5383+
return focusedElement.matches('input, textarea');
53805384
}
53815385

53825386
function onDestroy$1() {
@@ -5548,7 +5552,7 @@
55485552
});
55495553
});
55505554
var t = ["-"];
5551-
var n = "\x32\x30\x32\x34\x2d\x31\x31\x2d\x32".split("-"),
5555+
var n = "\x32\x30\x32\x35\x2d\x30\x2d\x31\x37".split("-"),
55525556
e = new Date(n[0], n[1], n[2]),
55535557
r = ["se", "licen", "-", "v3", "l", "gp"];
55545558

dist/fullpage.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/mixed/index.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)