1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-27 17:28:39 +00:00

Fixed #13 - tri par date / tri par titre

This commit is contained in:
nicosomb 2013-04-16 12:58:03 +02:00
parent 139769aa24
commit 9fee2e7266
9 changed files with 42 additions and 13 deletions

View file

@ -22,6 +22,6 @@ function toggle_archive(element, id, token, view_article) {
}
}
function sort_links(sort, token) {
$('#content').load('process.php', { sort: sort, token: token } );
function sort_links(view, sort, token) {
$('#content').load('process.php', { view: view, sort: sort, token: token } );
}