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 23153ae commit a2742f5Copy full SHA for a2742f5
jquery.fullPage.js
@@ -1,5 +1,5 @@
1
/*!
2
- * fullPage 2.7.10 (Beta)
+ * fullPage 2.10.0 (Beta)
3
* https://github.com/alvarotrigo/fullPage.js
4
* @license MIT licensed
5
*
@@ -2024,8 +2024,16 @@
2024
return 'right';
2025
}
2026
2027
-
+ /**
2028
+ * Checks if the element needs scrollbar and if the user wants to apply it.
2029
+ * If so it creates it.
2030
+ *
2031
+ * @param {Object} element jQuery object of the section or slide
2032
+ */
2033
function createSlimScrolling(element){
2034
+ //User doesn't want scrollbar here? Sayonara baby!
2035
+ if(element.hasClass('fp-noscroll')) return;
2036
+
2037
//needed to make `scrollHeight` work under Opera 12
2038
element.css('overflow', 'hidden');
2039
0 commit comments