mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
28 lines
674 B
JavaScript
28 lines
674 B
JavaScript
/*!
|
|
* Infinite Scroll v4.0.1
|
|
* Automatically add next page
|
|
*
|
|
* Licensed GPLv3 for open source use
|
|
* or Infinite Scroll Commercial License for commercial use
|
|
*
|
|
* https://infinite-scroll.com
|
|
* Copyright 2018-2020 Metafizzy
|
|
*/
|
|
|
|
( function( window, factory ) {
|
|
// universal module definition
|
|
if ( typeof module == 'object' && module.exports ) {
|
|
// CommonJS
|
|
module.exports = factory(
|
|
require('./core'),
|
|
require('./page-load'),
|
|
require('./scroll-watch'),
|
|
require('./history'),
|
|
require('./button'),
|
|
require('./status'),
|
|
);
|
|
}
|
|
|
|
} )( window, function factory( InfiniteScroll ) {
|
|
return InfiniteScroll;
|
|
} );
|