2013-04-19 05:41:12 -04:00
|
|
|
function toggle_favorite(element, id) {
|
2013-04-09 09:05:49 -04:00
|
|
|
$(element).toggleClass('fav-off');
|
|
|
|
$.ajax ({
|
2013-04-16 05:52:25 -04:00
|
|
|
url: "index.php?action=toggle_fav",
|
2013-04-19 05:41:12 -04:00
|
|
|
data:{id:id}
|
2013-04-09 09:05:49 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-04-19 05:41:12 -04:00
|
|
|
function toggle_archive(element, id, view_article) {
|
2013-04-12 07:13:21 -04:00
|
|
|
$(element).toggleClass('archive-off');
|
2013-04-09 09:05:49 -04:00
|
|
|
$.ajax ({
|
2013-04-16 05:52:25 -04:00
|
|
|
url: "index.php?action=toggle_archive",
|
2013-04-19 05:41:12 -04:00
|
|
|
data:{id:id}
|
2013-04-09 09:05:49 -04:00
|
|
|
});
|
2013-04-12 05:33:34 -04:00
|
|
|
var obj = $('#entry-'+id);
|
|
|
|
|
2013-04-12 07:13:21 -04:00
|
|
|
// 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-16 05:52:25 -04:00
|
|
|
}
|
|
|
|
|
2013-04-19 05:41:12 -04:00
|
|
|
function sort_links(view, sort) {
|
|
|
|
$.get('index.php', { view: view, sort: sort, full_head: 'no' }, function(data) {
|
|
|
|
$('#content').html(data);
|
|
|
|
});
|
2013-04-19 16:26:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ---------- Swith light or dark view
|
|
|
|
function setActiveStyleSheet(title) {
|
|
|
|
var i, a, main;
|
|
|
|
for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
|
|
|
|
if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
|
|
|
|
a.disabled = true;
|
|
|
|
if(a.getAttribute("title") == title) a.disabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$('#themeswitch').click(function() {
|
|
|
|
// we want the dark
|
|
|
|
if ($('body').hasClass('light-style')) {
|
|
|
|
setActiveStyleSheet('dark-style');
|
|
|
|
$('body').addClass('dark-style');
|
|
|
|
$('body').removeClass('light-style');
|
|
|
|
$('#themeswitch').text('light');
|
|
|
|
// we want the light
|
|
|
|
} else if ($('body').hasClass('dark-style')) {
|
|
|
|
setActiveStyleSheet('light-style');
|
|
|
|
$('body').addClass('light-style');
|
|
|
|
$('body').removeClass('dark-style');
|
|
|
|
$('#themeswitch').text('dark');
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|