aboutsummaryrefslogtreecommitdiff
path: root/static/js/globals.js
blob: ad0f4518cb9db9f4055729962ef39356a1c9d8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
window.dataLayer = window.dataLayer || [];
function gtag() {
  dataLayer.push(arguments);
}
gtag("js", new Date());

gtag("config", "G-72XTC500FR");

function changeLang(lang) {
  document.cookie = "lang=" + lang + "; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/";
  location.reload();
}

// Smooth scroll to anchor
$(document).ready(function () {
  $('a[href^="#"]').on("click", function (e) {
    e.preventDefault();

    const target = $(this.getAttribute("href"));
    if (target.length) {
      $("html, body").stop().animate(
        {
          scrollTop: target.offset().top,
        },
        500
      );
    }
  });
});

document.addEventListener("DOMContentLoaded", function () {
  var equationElements = document.getElementsByTagName("*");

  for (var i = 0; i < equationElements.length; i++) {
    var element = equationElements[i];

    if (
      element.innerHTML.startsWith("$$") &&
      element.innerHTML.endsWith("$$")
    ) {
      element.style.overflowX = "scroll";
      element.style.whiteSpace = "nowrap";
      element.classList.add("equation-container");
    }
  }
});

function summonOneko() {
  document.cookie =
    "summonOneko=true; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/";
  location.reload();
}

function withdrawOneko() {
  document.cookie =
    "summonOneko=false; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/";
  location.reload();
}