wallabag/js/poche.js

23 lines
670 B
JavaScript
Raw Normal View History

2013-04-15 12:09:58 +00:00
function toggle_favorite(element, id, token) {
$(element).toggleClass('fav-off');
$.ajax ({
url: "process.php?action=toggle_fav",
2013-04-15 12:09:58 +00:00
data:{id:id, token:token}
});
}
2013-04-15 12:09:58 +00:00
function toggle_archive(element, id, token, view_article) {
$(element).toggleClass('archive-off');
$.ajax ({
url: "process.php?action=toggle_archive",
2013-04-15 12:09:58 +00:00
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');
}
}