From 55821e04c188997d258645975220828e195d0df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 5 Aug 2013 15:54:37 +0200 Subject: share email +twitter / class messages --- tpl/js/poche.js | 57 --------------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 tpl/js/poche.js (limited to 'tpl/js/poche.js') diff --git a/tpl/js/poche.js b/tpl/js/poche.js deleted file mode 100644 index b4eac11c..00000000 --- a/tpl/js/poche.js +++ /dev/null @@ -1,57 +0,0 @@ -function toggle_favorite(element, id) { - $(element).toggleClass('fav-off'); - $.ajax ({ - url: "index.php?action=toggle_fav", - data:{id:id} - }); -} - -function toggle_archive(element, id, view_article) { - $(element).toggleClass('archive-off'); - $.ajax ({ - url: "index.php?action=toggle_archive", - 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'); - } -} - -function sort_links(view, sort) { - $.get('index.php', { view: view, sort: sort }, 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; -}); -- cgit v1.2.3