summaryrefslogtreecommitdiff
path: root/assets/js/init.js
blob: 18a9724412ed5a36c5046d447a25a613d7e8afd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Initialization
$(function() {

    Kanboard.Init();

    if (Kanboard.Exists("board")) {
        Kanboard.Board.Init();
    }
    else if (Kanboard.Exists("task-section")) {
        Kanboard.Task.Init();
    }
    else if (Kanboard.Exists("analytic-section")) {
        Kanboard.Analytic.Init();
    }
});