RSS Git Download  Clone
Raw View History
Blames found: 3 Mode: javascript Binary: false


Hang on, we reloading big blames...
document.addEventListener("DOMContentLoaded", function(event) { function paginate() { const $pager = $('.pager'); $pager.find('.next a').one('click', function (e) { e.preventDefault();
const url = new URL(this.href); const retrieve = `${location.pathname}${url.search}` $.ajax({ url: retrieve, type: "GET", cache: false, success: function (html) { $pager.after(html); $pager.remove(); paginate(); }
}); }); $pager.find('.previous').remove(); } paginate(); })