aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/poche.js
blob: 6bc3c188aa6a0857daa841ad7bd0f1483d435bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function toggle_favorite(element, id) {
    $(element).toggleClass('fav-off');
    $.ajax ({
        url: "index.php?action=toggle_fav",
        data:{id:id}
    });
}

function toggle_archive(element, id, view_article) {
    $(element).toggleClass('archive-off');
    $.ajax ({
        url: "index.php?action=toggle_archive",
        data:{id:id}
    });
    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) {
    //$('#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);
    });
}