~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/console/media/console.js

  • Committer: William Grant
  • Date: 2009-04-02 06:38:57 UTC
  • mto: (1165.3.1 submissions)
  • mto: This revision was merged to the branch mainline in revision 1174.
  • Revision ID: grantw@unimelb.edu.au-20090402063857-tka8rl8n3gnlo3rf
Expose SVN revision and URL information through fileservice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
440
440
    case 38:                /* Up arrow */
441
441
        hist.up(inp.value);
442
442
        inp.value = hist.curr();
443
 
        /* Inhibit further responses to this event, or WebKit moves the
444
 
         * cursor to the start. */
445
 
        return false;
446
443
        break;
447
444
    case 40:                /* Down arrow */
448
445
        hist.down(inp.value);
449
446
        inp.value = hist.curr();
450
 
        return false;
451
447
        break;
452
448
    }
453
449
}