Skip to content

Commit e30c54d

Browse files
committed
- Updating version & dist files
1 parent 29681a0 commit e30c54d

File tree

9 files changed

+19
-16
lines changed

9 files changed

+19
-16
lines changed

dist/fullpage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.20
2+
* fullPage 4.0.21
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only

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: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.20
2+
* fullPage 4.0.21
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only
@@ -153,13 +153,14 @@
153153

154154
var win = window;
155155
var doc = document;
156-
var isTouchDevice = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|playbook|silk|BlackBerry|BB10|Windows Phone|Tizen|Bada|webOS|IEMobile|Opera Mini)/);
156+
var isTouchDevice = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|playbook|silk|BlackBerry|BB10|Windows Phone|Tizen|Bada|webOS|IEMobile|Opera Mini)/) || navigator.userAgent.includes("Mac") && "ontouchend" in document; // iPad on iOS 13 detection
157+
157158
var isMacDevice = /(Mac|iPhone|iPod|iPad)/i.test(win.navigator.userAgent); // @ts-ignore
158159

159160
var isTouch = 'ontouchstart' in win || navigator.msMaxTouchPoints > 0 || navigator.maxTouchPoints;
160161
var isIE11 = !!window.MSInputMethodContext && !!document.documentMode; // taken from https://github.com/udacity/ud891/blob/gh-pages/lesson2-focus/07-modals-and-keyboard-traps/solution/modal.js
161162

162-
var focusableElementsString = 'a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], [contenteditable]'; // cache common elements
163+
var focusableElementsString = 'a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], summary:not([disabled]), [contenteditable]'; // cache common elements
163164

164165
var FP = {
165166
test: {},
@@ -4696,7 +4697,8 @@
46964697
if (isAccelerating && isScrollingVertically) {
46974698
setState({
46984699
scrollTrigger: 'wheel'
4699-
}); //scrolling down?
4700+
});
4701+
e.stopPropagation(); //scrolling down?
47004702

47014703
if (delta < 0) {
47024704
scrolling('down');
@@ -4707,6 +4709,7 @@
47074709
}
47084710
}
47094711

4712+
e.stopPropagation();
47104713
return false;
47114714
}
47124715

@@ -5485,7 +5488,7 @@
54855488
});
54865489
});
54875490
var t = ["-"];
5488-
var n = "\x32\x30\x32\x33\x2d\x34\x2d\x32\x39".split("-"),
5491+
var n = "\x32\x30\x32\x34\x2d\x30\x2d\x32\x30".split("-"),
54895492
e = new Date(n[0], n[1], n[2]),
54905493
r = ["se", "licen", "-", "v3", "l", "gp"];
54915494

@@ -5915,7 +5918,7 @@
59155918
}; //public functions
59165919

59175920

5918-
FP.version = '4.0.20';
5921+
FP.version = '4.0.21';
59195922
FP.test = Object.assign(FP.test, {
59205923
top: '0px',
59215924
translate3d: 'translate3d(0px, 0px, 0px)',

dist/fullpage.min.css

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

dist/fullpage.min.css.map

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

dist/fullpage.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.

src/css/fullpage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.20
2+
* fullPage 4.0.21
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only

src/js/fullpage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function setAPI(){
6161
};
6262

6363
//public functions
64-
FP.version = '4.0.20';
64+
FP.version = '4.0.21';
6565

6666
FP.test = Object.assign(FP.test, {
6767
top: '0px',

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)