mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
- fix tag autocomplete not working in create task form
This commit is contained in:
parent
2b52366684
commit
487a450da9
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ var mytinytodo = window.mytinytodo = _mtt = {
|
|||
$("#edittags").autocomplete({
|
||||
source: function(request, response) {
|
||||
var taskId = document.getElementById('taskedit_form').id.value;
|
||||
var listId = taskList[taskId].listId;
|
||||
var listId = (taskId != '') ? taskList[taskId].listId : curList.id;
|
||||
_mtt.db.request('suggestTags', {list:listId, q:ac_extractLast(request.term)}, function(json){
|
||||
response(json);
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue