]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - js/poche.js
Update style.css
[github/wallabag/wallabag.git] / js / poche.js
index 98fc48ea3f5fba7af2afaa9099df76b394d40a89..97d9911dccbe3fff59ddccf8aed2a8dfb125c815 100644 (file)
@@ -1,16 +1,16 @@
-function toggle_favorite(element, id, token) {
+function toggle_favorite(element, id) {
     $(element).toggleClass('fav-off');
     $.ajax ({
         url: "index.php?action=toggle_fav",
-        data:{id:id, token:token}
+        data:{id:id}
     });
 }
 
-function toggle_archive(element, id, token, view_article) {
+function toggle_archive(element, id, view_article) {
     $(element).toggleClass('archive-off');
     $.ajax ({
         url: "index.php?action=toggle_archive",
-        data:{id:id, token:token}
+        data:{id:id}
     });
     var obj = $('#entry-'+id);
 
@@ -22,6 +22,36 @@ function toggle_archive(element, id, token, view_article) {
     }
 }
 
-function sort_links(view, sort, token) {
-    $('#content').load('process.php', { view: view, sort: sort, token: token } );
-}
\ No newline at end of file
+function sort_links(view, sort) {
+    $.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;
+});