diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-03-14 00:22:11 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-03-14 00:22:11 +0100 |
commit | 7f8f8271e49a2834a87012ea838099c8b46cf63f (patch) | |
tree | 2c5394e49370d8e6890019de3889ab193b827aa8 /docs/js/custom.js | |
parent | f5618feb73343f0a120a809116c443630d70a87c (diff) | |
download | wallabag-7f8f8271e49a2834a87012ea838099c8b46cf63f.tar.gz wallabag-7f8f8271e49a2834a87012ea838099c8b46cf63f.tar.zst wallabag-7f8f8271e49a2834a87012ea838099c8b46cf63f.zip |
redo the whole lot of commits I've deleted while trying Gitlab/Framasoft mirroring
Diffstat (limited to 'docs/js/custom.js')
-rw-r--r-- | docs/js/custom.js | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/docs/js/custom.js b/docs/js/custom.js deleted file mode 100644 index 23578e2e..00000000 --- a/docs/js/custom.js +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | $(function () { | ||
2 | $('.aj-nav').click(function (e) { | ||
3 | e.preventDefault(); | ||
4 | $(this).parent().siblings().find('ul').slideUp(); | ||
5 | $(this).next().slideToggle(); | ||
6 | }); | ||
7 | |||
8 | // Bootstrap Table Class | ||
9 | $('table').addClass('table'); | ||
10 | |||
11 | // Responsive menu spinner | ||
12 | $('#menu-spinner-button').click(function () { | ||
13 | $('#sub-nav-collapse').slideToggle(); | ||
14 | }); | ||
15 | |||
16 | // Catch browser resize | ||
17 | $(window).resize(function () { | ||
18 | // Remove transition inline style on large screens | ||
19 | if ($(window).width() >= 768) | ||
20 | $('#sub-nav-collapse').removeAttr('style'); | ||
21 | }); | ||
22 | }); | ||
23 | |||
24 | //Fix GitHub Ribbon overlapping Scrollbar | ||
25 | var t = $('#github-ribbon'); | ||
26 | var a = $('article'); | ||
27 | if (t[0] && a[0] && a[0].scrollHeight > $('.right-column').height()) t[0].style.right = '16px'; | ||
28 | |||
29 | //Toggle Code Block Visibility | ||
30 | function toggleCodeBlocks() { | ||
31 | var t = localStorage.getItem("toggleCodeStats") | ||
32 | t = (t + 1) % 3; | ||
33 | localStorage.setItem("toggleCodeStats", t); | ||
34 | var a = $('.content-page article'); | ||
35 | var c = a.children().filter('pre'); | ||
36 | var d = $('.right-column'); | ||
37 | if (d.hasClass('float-view')) { | ||
38 | d.removeClass('float-view'); | ||
39 | $('#toggleCodeBlockBtn')[0].innerHTML = "Hide Code Blocks"; | ||
40 | } else { | ||
41 | if (c.hasClass('hidden')) { | ||
42 | d.addClass('float-view'); | ||
43 | c.removeClass('hidden'); | ||
44 | $('#toggleCodeBlockBtn')[0].innerHTML = "Show Code Blocks Inline"; | ||
45 | } else { | ||
46 | c.addClass('hidden'); | ||
47 | $('#toggleCodeBlockBtn')[0].innerHTML = "Show Code Blocks"; | ||
48 | } | ||
49 | } | ||
50 | } | ||
51 | |||
52 | if (localStorage.getItem("toggleCodeStats") >= 0) { | ||
53 | var t = localStorage.getItem("toggleCodeStats"); | ||
54 | if (t == 1) { | ||
55 | toggleCodeBlocks(); | ||
56 | localStorage.setItem("toggleCodeStats", 1); | ||
57 | } | ||
58 | if (t == 2) { | ||
59 | toggleCodeBlocks(); | ||
60 | toggleCodeBlocks(); | ||
61 | localStorage.setItem("toggleCodeStats", 2); | ||
62 | } | ||
63 | } else { | ||
64 | localStorage.setItem("toggleCodeStats", 0); | ||
65 | } | ||