X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=js%2Fpoche.js;h=d27ecbbacfe7916ca625441c0a61e44dd28c8865;hb=4e97e6e8b9b6b02942f506b930b215540cd1f2a1;hp=42958e83e0a53db26bbd6f4b0bf79d0e41d883d3;hpb=b70971e06b67786bb61e863cf89b3b061b4f6467;p=github%2Fwallabag%2Fwallabag.git diff --git a/js/poche.js b/js/poche.js index 42958e83..d27ecbba 100644 --- a/js/poche.js +++ b/js/poche.js @@ -1,20 +1,58 @@ -function toggle_favorite(element,id) { +function toggle_favorite(element, id) { $(element).toggleClass('fav-off'); $.ajax ({ - url: "process.php?action=toggle_fav", + url: "index.php?action=toggle_fav", data:{id:id} }); } -function toggle_archive(id) { - /*$('#entry-'+id).toggle();*/ +function toggle_archive(element, id, view_article) { + $(element).toggleClass('archive-off'); $.ajax ({ - url: "process.php?action=toggle_archive", + url: "index.php?action=toggle_archive", data:{id:id} }); var obj = $('#entry-'+id); - $('#content').masonry('remove',obj); - $('#content').masonry('reloadItems'); - $('#content').masonry('reload'); -} \ No newline at end of file + // 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) { + //$('#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); + }); +} + + +// ---------- 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; +});