Change layout (experimental)

This commit is contained in:
Frédéric Guillot
2014-11-02 15:06:41 -05:00
parent 8fe5df39d9
commit 37332ae222
75 changed files with 2616 additions and 744 deletions

12
assets/js/init.js Normal file
View File

@@ -0,0 +1,12 @@
// Initialization
$(function() {
Kanboard.Init();
if ($("#board").length) {
Kanboard.Board.Init();
}
else if ($("#task-section").length) {
Kanboard.Task.Init();
}
});