resolve merge conflicts

pull/1/head
ansuz 7 years ago
commit c390bdd518

@ -20,6 +20,7 @@ define([
var $iframe = $('#pad-iframe').contents(); var $iframe = $('#pad-iframe').contents();
var $body = $iframe.find('body'); var $body = $iframe.find('body');
var ifrw = $('#pad-iframe')[0].contentWindow; var ifrw = $('#pad-iframe')[0].contentWindow;
var $list = $iframe.find('#tasksList');
var onReady = function () { var onReady = function () {
@ -28,7 +29,13 @@ define([
var deleteTask = function(id) { var deleteTask = function(id) {
todo.remove(id); todo.remove(id);
APP.display(); var $els = $list.find('.cp-task').filter(function (i, el) {
return $(el).data('id') === id;
});
$els.fadeOut(null, function () {
$els.remove();
});
//APP.display();
}; };
// TODO make this actually work, and scroll to bottom... // TODO make this actually work, and scroll to bottom...
@ -55,15 +62,11 @@ define([
}); });
}; };
var display = APP.display = function () { var addTaskUI = function (el, animate) {
var $list = $iframe.find('#tasksList');
$list.empty();
APP.lm.proxy.order.forEach(function(el) {
var $taskDiv = $('<div>', { var $taskDiv = $('<div>', {
'class': 'cp-task' 'class': 'cp-task'
}).appendTo($list); }).appendTo($list);
$taskDiv.data('id', el);
var $box = makeCheckbox(el, function (state) { var $box = makeCheckbox(el, function (state) {
display(); display();
@ -79,15 +82,27 @@ 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() {
deleteTask(el); deleteTask(el);
}); });
if (animate) {
$taskDiv.hide();
window.setTimeout(function () {
// ???
$taskDiv.fadeIn();
}, 0);
}
};
var display = APP.display = function () {
$list.empty();
APP.lm.proxy.order.forEach(function (el) {
addTaskUI(el);
}); });
//scrollTo('300px'); //scrollTo('300px');
}; };
@ -101,10 +116,12 @@ define([
"mtime": +new Date() "mtime": +new Date()
}; };
todo.add(Cryptpad.createChannelId(), obj); var id = Cryptpad.createChannelId();
todo.add(id, obj);
$input.val(""); $input.val("");
display(); addTaskUI(id, true);
//display();
}; };
var $formSubmit = $iframe.find('.cp-create-form button').on('click', addTask); var $formSubmit = $iframe.find('.cp-create-form button').on('click', addTask);

Loading…
Cancel
Save