metafizzy / infinite-scroll

📜 Automatically add next page
https://infinite-scroll.com
7.41k stars 1.74k forks source link

All docs codepen examples show "No more pages to load" #916

Closed Ezra-Siton-UIX closed 3 years ago

Ezra-Siton-UIX commented 4 years ago

Example: https://codepen.io/desandro/pen/xrdERX

https://codepen.io/desandro/pen/WmeqWg

image

desandro commented 3 years ago

Thanks for reporting this issue! Looks like CodePen changed their debug URL domains from s.codepen.io to cdpn.io. I fixed this by using domain-relative / path instead.

// previous
function getPenPath() {
  var slug = nextPenSlugs[ this.loadCount ];
  if ( slug ) {
    return 'https://s.codepen.io/desandro/debug/' + slug;
  }
}

// fixed
function getPenPath() {
  var slug = nextPenSlugs[ this.loadCount ];
  if ( slug ) {
    return '/desandro/debug/' + slug;
  }
}