wallabag/js/poche.js
2013-04-16 11:52:25 +02:00

27 lines
774 B
JavaScript

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