]> 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 6751920a98ce02a3883dfc55662877da402d7fd9..98fc48ea3f5fba7af2afaa9099df76b394d40a89 100644 (file)
@@ -1,16 +1,27 @@
-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(id) {
-    $('#entry-'+id).toggle();
+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);
+
+    // on vient de la vue de l'article, donc pas de gestion de grille
+    if (view_article != 1) {
+        $('#content').masonry('remove',obj);
+        $('#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