hide dates in todo
This commit is contained in:
parent
f0581f2cf4
commit
a15ff9ba2a
@ -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() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user