~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-06-24 09:57:42 UTC
  • Revision ID: grantw@unimelb.edu.au-20090624095742-0mk2uzne2glpk7xf
Add default messages to our HTTP errors. Fixes issue #98.

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
}