We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87098ee commit c1e7060Copy full SHA for c1e7060
jquery.fullPage.js
@@ -108,7 +108,7 @@
108
109
var FP = $.fn.fullpage;
110
111
- // Create some defaults, extending them with any options that were provided
+ // Creating some defaults, extending them with any options that were provided
112
options = $.extend({
113
//navigation
114
menu: false,
@@ -1436,7 +1436,10 @@
1436
}
1437
1438
1439
- stopMedia(v.activeSection);
+ //pausing media of the leaving section (if we are not just resizing, as destinatino will be the same one)
1440
+ if(!v.localIsResizing){
1441
+ stopMedia(v.activeSection);
1442
+ }
1443
1444
options.scrollOverflowHandler.beforeLeave();
1445
element.addClass(ACTIVE).siblings().removeClass(ACTIVE);
0 commit comments