Highlight recently modified tasks on board (pull-request #201)

This commit is contained in:
Frédéric Guillot
2014-08-17 09:43:57 -07:00
parent 44e91721b0
commit eb76e1e530
6 changed files with 18 additions and 4 deletions

View File

@@ -584,6 +584,10 @@ a.filter-on {
font-size: 95%;
}
.task-board-recent {
box-shadow: 0px 0px 10px rgba(82, 158, 236, 1);
}
.task-table a,
.task-board a {
color: #000;

View File

@@ -77,8 +77,7 @@ Kanboard.Board = (function() {
connectWith: ".column",
placeholder: "draggable-placeholder",
stop: function(event, ui) {
var task_id = parseInt(ui.item[0].getAttribute("data-task-id"));
board_save(task_id);
board_save(ui.item.attr('data-task-id'));
}
});