[ruby/rdoc] [DOC] Fix to use KeyboardEvent.key over keyCode
https://github.com/ruby/rdoc/commit/663edc807c
This commit is contained in:
parent
77fa4787bd
commit
62754503d8
@ -15,9 +15,9 @@ Search.prototype = Object.assign({}, Navigation, new function() {
|
||||
this.init = function() {
|
||||
var _this = this;
|
||||
var observer = function(e) {
|
||||
switch(e.keyCode) {
|
||||
case 38: // Event.KEY_UP
|
||||
case 40: // Event.KEY_DOWN
|
||||
switch(e.key) {
|
||||
case 'ArrowUp':
|
||||
case 'ArrowDown':
|
||||
return;
|
||||
}
|
||||
_this.search(_this.input.value);
|
||||
|
@ -23,24 +23,24 @@ Navigation = new function() {
|
||||
|
||||
this.onkeydown = function(e) {
|
||||
if (!this.navigationActive) return;
|
||||
switch(e.keyCode) {
|
||||
case 37: //Event.KEY_LEFT:
|
||||
switch(e.key) {
|
||||
case 'ArrowLeft':
|
||||
if (this.moveLeft()) e.preventDefault();
|
||||
break;
|
||||
case 38: //Event.KEY_UP:
|
||||
if (e.keyCode == 38 || e.ctrlKey) {
|
||||
case 'ArrowUp':
|
||||
if (e.key == 'ArrowUp' || e.ctrlKey) {
|
||||
if (this.moveUp()) e.preventDefault();
|
||||
}
|
||||
break;
|
||||
case 39: //Event.KEY_RIGHT:
|
||||
case 'ArrowRight':
|
||||
if (this.moveRight()) e.preventDefault();
|
||||
break;
|
||||
case 40: //Event.KEY_DOWN:
|
||||
if (e.keyCode == 40 || e.ctrlKey) {
|
||||
case 'ArrowDown':
|
||||
if (e.key == 'ArrowDown' || e.ctrlKey) {
|
||||
if (this.moveDown()) e.preventDefault();
|
||||
}
|
||||
break;
|
||||
case 13: //Event.KEY_RETURN:
|
||||
case 'Enter':
|
||||
if (this.current) e.preventDefault();
|
||||
this.select(this.current);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user