]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - js/poche.js
tag 0.11
[github/wallabag/wallabag.git] / js / poche.js
index 0dcc0a35fa3a0e9aed739081b9fe748bd41a4a31..6bc3c188aa6a0857daa841ad7bd0f1483d435bc7 100644 (file)
@@ -1,16 +1,16 @@
-function toggle_favorite(element, id, token) {
+function toggle_favorite(element, id) {
     $(element).toggleClass('fav-off');
     $.ajax ({
-        url: "process.php?action=toggle_fav",
-        data:{id:id, token:token}
+        url: "index.php?action=toggle_fav",
+        data:{id:id}
     });
 }
 
-function toggle_archive(element, id, token, view_article) {
+function toggle_archive(element, id, view_article) {
     $(element).toggleClass('archive-off');
     $.ajax ({
-        url: "process.php?action=toggle_archive",
-        data:{id:id, token:token}
+        url: "index.php?action=toggle_archive",
+        data:{id:id}
     });
     var obj = $('#entry-'+id);
 
@@ -20,4 +20,11 @@ function toggle_archive(element, id, token, view_article) {
         $('#content').masonry('reloadItems');
         $('#content').masonry('reload');
     }
+}
+
+function sort_links(view, sort) {
+    //$('#content').load('index.php', { view: view, sort: sort, full_head: 'no' } );
+    $.get('index.php', { view: view, sort: sort, full_head: 'no' }, function(data) {
+      $('#content').html(data);
+    });
 }
\ No newline at end of file