aboutsummaryrefslogtreecommitdiff
path: root/src/js/main.js
blob: 1dd85666837bb153c9752ef643bf516779703b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import {Even} from './even.js'

import '../css/style.scss'

$(document).ready(function () {
  Even.backToTop();
  Even.mobileNavbar();
  Even.toc();
  Even.fancybox();
});

Even.flowchart();
Even.sequence();

if (window.hljs) {
  hljs.initHighlighting();
  Even.highlight();
} else {
  Even.chroma();
}