mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
- parseTaskStr was not implemented in ajax_storage
This commit is contained in:
parent
f7789f467b
commit
45017ab230
1 changed files with 5 additions and 0 deletions
|
|
@ -125,6 +125,11 @@ mytinytodoStorageAjax.prototype =
|
|||
$.post(this.mtt.mttUrl+'ajax.php?moveTask', { id:params.id, from:params.from, to:params.to }, callback, 'json');
|
||||
},
|
||||
|
||||
parseTaskStr: function(params, callback)
|
||||
{
|
||||
$.post(this.mtt.mttUrl+'ajax.php?parseTaskStr', { list:params.list, title:params.title, tz:params.tz, tag:params.tag }, callback, 'json');
|
||||
},
|
||||
|
||||
|
||||
// Lists
|
||||
addList: function(params, callback)
|
||||
|
|
|
|||
Loading…
Reference in a new issue