Improve css and phpdoc comments

This commit is contained in:
Frédéric Guillot
2014-05-23 11:59:23 -04:00
parent db76bcb593
commit 14c2998c4a
19 changed files with 428 additions and 322 deletions

View File

@@ -15,7 +15,7 @@
});
// Open assignee popover
$(".task-user a").click(function(e) {
$(".task-boad-user a").click(function(e) {
e.preventDefault();
e.stopPropagation();
@@ -60,7 +60,7 @@
$(".column").each(function() {
var columnId = $(this).attr("data-column-id");
$("#column-" + columnId + " .task").each(function(index) {
$("#column-" + columnId + " .task-board").each(function(index) {
data.push({
"task_id": parseInt($(this).attr("data-task-id")),
"position": index + 1,