mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-11 11:55:09 -05:00
27 lines
792 B
JavaScript
27 lines
792 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(view, sort, token) {
|
|
$('#content').load('process.php', { view: view, sort: sort, token: token } );
|
|
} |