Excellent. Keep all items in one list, or multiple lists for really busy people. I like the minimize to compact mode. Can that be made so that the maxized and minimized versions align right rather than align left? The natural place for the widget is to sit at the end of my page bar, looking like just a special tab.
It is possible to enter bad strings that will break the widget. Your "safe" function which is supposed to remove HTML injections will only reduce the first instance of '&','<' and '>'. Later instances will be left untouched. As an example, enter for one of the to-do items the string: <><sub>asdasdf.
Unfortunately, I have a wish, too.
Entering notes to the tasks would be perfect, if it isn't too much trouble.
dafalias 作 , # 2006/07/20 14:27:15
Pesala 作 , # 2006/07/19 12:05:14
Ramunas 作 , # 2006/07/18 21:34:14
padule 作 , # 2006/07/17 16:28:23
Your "safe" function which is supposed to remove HTML injections will only reduce the first instance of '&','<' and '>'. Later instances will be left untouched. As an example, enter for one of the to-do items the string: <><sub>asdasdf.
To fix this bug you can use this function:
function safe (str) { str = str.replace(/&/g, '&amp;'); str = str.replace(/</g, '&lt;'); str = str.replace(/>/g, '&gt;'); return str; }Benjamin Joffe 作 , # 2006/07/17 16:21:28
looks really nice. And yeahhh, a multiple computer synchronization would be quite perfect - that's what I have ever looked for :-)
cu.
Schwenx 作 , # 2006/07/17 15:49:26
add priorities and it will be nearly perfect.
also, i would make tasks little smaller in height.
padule 作 , # 2006/07/17 10:03:41