mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
20 lines
No EOL
480 B
JavaScript
20 lines
No EOL
480 B
JavaScript
function toggle_favorite(element,id) {
|
|
$(element).toggleClass('fav-off');
|
|
$.ajax ({
|
|
url: "process.php?action=toggle_fav",
|
|
data:{id:id}
|
|
});
|
|
}
|
|
|
|
function toggle_archive(id) {
|
|
/*$('#entry-'+id).toggle();*/
|
|
$.ajax ({
|
|
url: "process.php?action=toggle_archive",
|
|
data:{id:id}
|
|
});
|
|
var obj = $('#entry-'+id);
|
|
$('#content').masonry('remove',obj);
|
|
|
|
$('#content').masonry('reloadItems');
|
|
$('#content').masonry('reload');
|
|
} |