You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for an interesting library @MoOx . I am trying to implement a white loading bar to the pjax code... I am also testing with logging the event to the console log but it only get's fired when there's a fresh restart of the whole page not just one section. Ideally I want to see it working also when changing page sections without a full reload.
Thanks for an interesting library @MoOx . I am trying to implement a white loading bar to the pjax code... I am also testing with logging the event to the console log but it only get's fired when there's a fresh restart of the whole page not just one section. Ideally I want to see it working also when changing page sections without a full reload.
This is my code:
var pjax;
var whiteloading;
document.addEventListener("DOMContentLoaded", function() {
// Init Pjax instance
pjax = new Pjax({
elements: "a", // default is "a[href], form[action]"
selectors: ["title", ".js-Pjax"],
cacheBust: false
});
});
whiteloading = $(".whiteloading");
whiteloading.show();
document.addEventListener("pjax:send", console.log("start"));
document.addEventListener("pjax:success", console.log("done"));
The text was updated successfully, but these errors were encountered: