Show
Ignore:
Timestamp:
05/21/07 12:55:15 (17 months ago)
Author:
mbonetti
Message:

kbnav: edit tags of current item (t), ajax: fix to actually submit the
edited tags, duh.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/ajax.php

    r1717 r1718  
    262262                if (!e) { e = event; e.which = e.keyCode; } 
    263263                switch (e.which) { 
    264                  case 10: // return 
    265                  case 13: // enter 
    266                  setTags(id,control.value);  
    267                  return false; 
    268                  break; 
    269                  default: return true;   
     264                 case 10: case 13: _et(id); return false; break; 
     265                 default: return true;  break; 
    270266                } 
    271267          };