I use Digg-style with activated ajax support for my project. The annoying thing that it hides parameter ?page=N from URI.
So if I, for example, go back from details page to the general list page it returns me to the first page instead of actual page=N where it comes from.
In case of AJAX deactivation it works as expected and passes "page" parameter to GET. But it disappears right after AJAX activation.
I've tried to change the string #103 at endless-pagination.js from
return false;
to
return true;
Page parameter is passed to URL properly, but it seems at the same time AJAX stopped working forced to reload the whole page when switching between pages.
I use Digg-style with activated ajax support for my project. The annoying thing that it hides parameter ?page=N from URI.
So if I, for example, go back from details page to the general list page it returns me to the first page instead of actual page=N where it comes from.
In case of AJAX deactivation it works as expected and passes "page" parameter to GET. But it disappears right after AJAX activation.
I've tried to change the string #103 at endless-pagination.js from
return false; to return true;
Page parameter is passed to URL properly, but it seems at the same time AJAX stopped working forced to reload the whole page when switching between pages.