boilerplate.js
Version:
Development Tools
17 lines (10 loc) • 464 B
JavaScript
components('laravel.load.popstate', function () {
window.onpopstate = function (event) {
if (components.cache.laravel.page[event.currentTarget.location.pathname]) {
components.laravel.load.page(event.currentTarget.location.pathname+event.currentTarget.location.search, null, false, true);
} else {
location.href = event.currentTarget.location.href;
return;
}
};
});