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

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