wallabag/js/poche.js

30 lines
873 B
JavaScript
Raw Permalink Normal View History

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