Skip to content

Commit d507d02

Browse files
authored
Merge pull request #4665 from alvarotrigo/dev
Merging dev branch 4.0.30
2 parents 9c83e71 + 7b98bb3 commit d507d02

23 files changed

+65
-36
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
---
2121

22-
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg)
22+
![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg)
2323
[![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
2424
[![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95)
2525
[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js)

dist/fullpage.css

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.29
2+
* fullPage 4.0.30
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only
@@ -216,6 +216,12 @@ html.fp-enabled,
216216
height: auto !important;
217217
}
218218

219+
/* Tries to prevent overwrites #4657 */
220+
.fp-enabled .fp-scrollable{
221+
overflow: visible;
222+
height: initial;
223+
}
224+
219225
/* Used with autoScrolling: false */
220226
.fp-scrollable.fp-responsive .fp-is-overflow.fp-section,
221227
.fp-scrollable .fp-section,
@@ -236,6 +242,9 @@ html.fp-enabled,
236242
/* Disabling vertical centering on scrollable elements */
237243
.fp-overflow{
238244
justify-content: flex-start;
245+
}
246+
247+
body:not(.fp-responsive) .fp-overflow{
239248
max-height: 100vh;
240249
}
241250

dist/fullpage.extensions.min.js

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

dist/fullpage.js

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* fullPage 4.0.29
2+
* fullPage 4.0.30
33
* https://github.com/alvarotrigo/fullPage.js
44
*
55
* @license GPLv3 for open source use only
@@ -1721,27 +1721,31 @@
17211721
return paramsPerEvent[eventName]();
17221722
}
17231723

1724+
function hasAutoPlay(item) {
1725+
return item.hasAttribute('data-autoplay') || item.hasAttribute('autoplay');
1726+
}
17241727
/**
17251728
* Plays video and audio elements.
17261729
*/
17271730

1731+
17281732
function playMedia(destiny) {
17291733
var panel = getSlideOrSection(destiny); //playing HTML5 media elements
17301734

17311735
$('video, audio', panel).forEach(function (element) {
1732-
if (element.hasAttribute('data-autoplay') && typeof element.play === 'function') {
1736+
if (hasAutoPlay(element) && typeof element.play === 'function') {
17331737
element.play();
17341738
}
17351739
}); //youtube videos
17361740

17371741
$('iframe[src*="youtube.com/embed/"]', panel).forEach(function (element) {
1738-
if (element.hasAttribute('data-autoplay')) {
1742+
if (hasAutoPlay(element)) {
17391743
playYoutube(element);
17401744
} //in case the URL was not loaded yet. On page load we need time for the new URL (with the API string) to load.
17411745

17421746

17431747
element.onload = function () {
1744-
if (element.hasAttribute('data-autoplay')) {
1748+
if (hasAutoPlay(element)) {
17451749
playYoutube(element);
17461750
}
17471751
};
@@ -1870,7 +1874,7 @@
18701874
} //changing slash for dash to make it a valid CSS style
18711875

18721876

1873-
text = text.replace('/', '-').replace('#', ''); //removing previous anchor classes
1877+
text = text.replace('/', '-').replace('#', '').replace(/\s/g, ''); //removing previous anchor classes
18741878

18751879
var classRe = new RegExp('\\b\\s?' + VIEWING_PREFIX + '-[^\\s]+\\b', "g");
18761880
$body.className = $body.className.replace(classRe, ''); //adding the current anchor
@@ -2145,7 +2149,7 @@
21452149
'overflow': 'hidden',
21462150
'height': '100%'
21472151
});
2148-
removeClass($body, 'fp-scrollable');
2152+
removeClass($body, SCROLLABLE);
21492153
setRecordHistory(getOriginals().recordHistory, 'internal'); //for IE touch devices
21502154

21512155
css(getContainer(), {
@@ -2162,7 +2166,7 @@
21622166
'overflow': 'visible',
21632167
'height': 'initial'
21642168
});
2165-
addClass($body, 'fp-scrollable');
2169+
addClass($body, SCROLLABLE);
21662170
var recordHistory = !getOptions().autoScrolling ? false : getOriginals().recordHistory;
21672171
setRecordHistory(recordHistory, 'internal'); //for IE touch devices
21682172

@@ -5536,7 +5540,7 @@
55365540
});
55375541
});
55385542
var t = ["-"];
5539-
var n = "\x32\x30\x32\x34\x2d\x38\x2d\x36".split("-"),
5543+
var n = "\x32\x30\x32\x34\x2d\x39\x2d\x31\x34".split("-"),
55405544
e = new Date(n[0], n[1], n[2]),
55415545
r = ["se", "licen", "-", "v3", "l", "gp"];
55425546

@@ -5997,7 +6001,7 @@
59976001
}; //public functions
59986002

59996003

6000-
FP.version = '4.0.29';
6004+
FP.version = '4.0.30';
60016005
FP.test = Object.assign(FP.test, {
60026006
top: '0px',
60036007
translate3d: 'translate3d(0px, 0px, 0px)',

dist/fullpage.min.css

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

0 commit comments

Comments
 (0)