riktar / jkanban

Vanilla Javascript plugin for manage kanban boards
https://www.riccardotartaglia.it/jkanban/
Apache License 2.0
1.08k stars 300 forks source link

Some div in board title #56

Closed zertex closed 5 years ago

zertex commented 5 years ago

If I put some div in board title, ex.:

<div class="row">
<div class="col-md-9">Board Title</div>
<div class="col-md-3" style="text-align: right">Menu</div>
</div>'

Drag system failed... How I can fix it?

marcosrocha85 commented 5 years ago

Hello, @zertex . I don't know why you want to use div to achieve a menu, but you can make that work by adding the class kanban-title-board to both of divs (row, col-md-9 and col-md-3 as well).

Perhaps you can use native jKanban button by using the buttonContent attribute.

zertex commented 5 years ago

I add dropdown class and menu. Thanks