]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - js/poche.js
Merge branch 'master' of github.com:inthepoche/poche
[github/wallabag/wallabag.git] / js / poche.js
index 64df553c9d91c25cec31cea1bf29e628a8703873..98fc48ea3f5fba7af2afaa9099df76b394d40a89 100644 (file)
@@ -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