make next button work

This commit is contained in:
Max Ogden
2011-06-30 22:08:51 -07:00
parent 6600006df4
commit a23ca47ac0
4 changed files with 14 additions and 11 deletions

View File

@@ -34,6 +34,11 @@ app.after = {
$(e.target).addClass('selected');
removalist.fetchRows(app.newest);
});
$( '.viewpanel-paging a' ).click(function( e ) {
// var action = $(e.target).attr('id').split('paging-')[1];
removalist.fetchRows(app.oldest);
});
}
}