summaryrefslogtreecommitdiff
path: root/html/assets/main.js
blob: 5863530e2094df6d81d7110c45bffbb64b4d4d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$(document).ready(function() {
  // Tooltips
  $(".tooltip").tooltipster();

  // Click rows
  $(".clickableRow").click(function() {
    if (event.which == 1) {
      window.document.location = $(this).attr("href");
    }
  });

  // Credits changelog toggle
  $(".changeLog").click(function() {
    $("#contentChangeLog").slideToggle(300);
  });
});