Merge branch 'add-board-bottom-left' of git://github.com/lkiesow/cryptpad into lkiesow-add-board-bottom-left

This commit is contained in:
yflory 2019-10-28 11:58:06 +01:00
commit fa08304514
1 changed files with 1 additions and 1 deletions

View File

@ -507,13 +507,13 @@
var addBoard = document.createElement('div');
addBoard.id = 'kanban-addboard';
addBoard.setAttribute('class', 'fa fa-plus');
boardContainerOuter.appendChild(addBoard);
self.container = boardContainer;
//add boards
self.addBoards(self.options.boards);
//appends to container
self.element.appendChild(boardContainerOuter);
self.element.appendChild(addBoard);
// send event that board has changed
self.onChange();