X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=js%2Fpoche.js;h=97d9911dccbe3fff59ddccf8aed2a8dfb125c815;hb=29c6fd460700e67fa538af337dcfce2787f2cc4e;hp=6bc3c188aa6a0857daa841ad7bd0f1483d435bc7;hpb=a1953dff8f39b225b408c3046246e9446a01f305;p=github%2Fwallabag%2Fwallabag.git diff --git a/js/poche.js b/js/poche.js index 6bc3c188..97d9911d 100644 --- a/js/poche.js +++ b/js/poche.js @@ -23,8 +23,35 @@ function toggle_archive(element, id, view_article) { } 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); }); -} \ No newline at end of file +} + + +// ---------- 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; +});