|
|
@ -79,9 +79,10 @@ define([
|
|
|
|
$('<span>', { 'class': 'cp-task-text' })
|
|
|
|
$('<span>', { 'class': 'cp-task-text' })
|
|
|
|
.text(entry.task)
|
|
|
|
.text(entry.task)
|
|
|
|
.appendTo($taskDiv);
|
|
|
|
.appendTo($taskDiv);
|
|
|
|
|
|
|
|
/*
|
|
|
|
$('<span>', { 'class': 'cp-task-date' })
|
|
|
|
$('<span>', { 'class': 'cp-task-date' })
|
|
|
|
.text(new Date(entry.ctime).toLocaleString())
|
|
|
|
.text(new Date(entry.ctime).toLocaleDateString())
|
|
|
|
.appendTo($taskDiv);
|
|
|
|
.appendTo($taskDiv);*/
|
|
|
|
$('<button>', {
|
|
|
|
$('<button>', {
|
|
|
|
'class': 'fa fa-times cp-task-remove btn btn-danger'
|
|
|
|
'class': 'fa fa-times cp-task-remove btn btn-danger'
|
|
|
|
}).appendTo($taskDiv).on('click', function() {
|
|
|
|
}).appendTo($taskDiv).on('click', function() {
|
|
|
|