disable problematic tooltips

pull/1/head
ansuz 8 years ago
parent 9c07793d0d
commit e84edb2c2b

@ -60,11 +60,12 @@ define([
var title = entry.state === 1? var title = entry.state === 1?
Messages.todo_markAsIncompleteTitle: Messages.todo_markAsIncompleteTitle:
Messages.todo_markAsCompleteTitle; Messages.todo_markAsCompleteTitle;
title = title;
removeTips(); removeTips();
return $('<span>', { return $('<span>', {
'class': 'cp-task-checkbox fa ' + checked, 'class': 'cp-task-checkbox fa ' + checked,
title: title, //title: title,
}).on('click', function () { }).on('click', function () {
entry.state = (entry.state + 1) % 2; entry.state = (entry.state + 1) % 2;
if (typeof(cb) === 'function') { if (typeof(cb) === 'function') {
@ -110,6 +111,7 @@ define([
$taskDiv.fadeIn(); $taskDiv.fadeIn();
}, 0); }, 0);
} }
removeTips();
}; };
var display = APP.display = function () { var display = APP.display = function () {
$list.empty(); $list.empty();

Loading…
Cancel
Save