X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=js%2Fpoche.js;h=98fc48ea3f5fba7af2afaa9099df76b394d40a89;hb=c00cdfdd3bc8e53750d34c60d13cd2d885c5d4fd;hp=64df553c9d91c25cec31cea1bf29e628a8703873;hpb=c8bbe19b3fd2ba268c98561690de37fe599ff055;p=github%2Fwallabag%2Fwallabag.git diff --git a/js/poche.js b/js/poche.js index 64df553c..98fc48ea 100644 --- a/js/poche.js +++ b/js/poche.js @@ -1,16 +1,16 @@ -function toggle_favorite(element, id) { +function toggle_favorite(element, id, token) { $(element).toggleClass('fav-off'); $.ajax ({ - url: "process.php?action=toggle_fav", - data:{id:id} + url: "index.php?action=toggle_fav", + data:{id:id, token:token} }); } -function toggle_archive(element, id, view_article) { +function toggle_archive(element, id, token, view_article) { $(element).toggleClass('archive-off'); $.ajax ({ - url: "process.php?action=toggle_archive", - data:{id:id} + url: "index.php?action=toggle_archive", + data:{id:id, token:token} }); var obj = $('#entry-'+id); @@ -20,4 +20,8 @@ function toggle_archive(element, id, view_article) { $('#content').masonry('reloadItems'); $('#content').masonry('reload'); } +} + +function sort_links(view, sort, token) { + $('#content').load('process.php', { view: view, sort: sort, token: token } ); } \ No newline at end of file