diff options
author | Dan McGee <dan@archlinux.org> | 2011-01-14 23:45:27 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-01-14 23:45:27 -0600 |
commit | 758476b547c4a4a86541923cd27fab4970060a5b (patch) | |
tree | ce44190313818dd2dccc8ab037d11dd974e291b8 /media/archweb.js | |
parent | 55fa62b69837a70bcd58f05249f7337a909dcf18 (diff) |
Use more efficient updateCell event after todo list click
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'media/archweb.js')
-rw-r--r-- | media/archweb.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/media/archweb.js b/media/archweb.js index 7a0d1dcc..b2f3af2a 100644 --- a/media/archweb.js +++ b/media/archweb.js @@ -150,8 +150,7 @@ function todolist_flag() { 'incomplete').removeClass('complete'); } /* let tablesorter know the cell value has changed */ - /* newer version of tablesorter: $('.results').trigger('updateCell', $(link).parent('td')); */ - $('.results').trigger('update'); + $('.results').trigger('updateCell', $(link).parent('td')); }); return false; } |