add js for grid page navigation

This commit is contained in:
Lance Edgar 2012-04-15 23:45:13 -05:00
parent e961e34407
commit 4808857f40

View file

@ -114,6 +114,24 @@ function loading(element) {
}
/*
* grid_navigate_page(link)
*
* Navigates to another page of results within the grid.
*/
function grid_navigate_page(link) {
var page = link.attr('href').replace(/^.*page=/, '');
var div = link.parents('div.grid:first');
loading(div);
div.load(div.attr('url'), {
'page': page,
'partial': true,
});
return false;
}
/*
* reload_grid_div(div)
*