Skip to content
Snippets Groups Projects
Commit d9ada384 authored by Angie Byron's avatar Angie Byron
Browse files

#784848 by kbgordon7 : Fixed Coding style for comments in autocomplete.js.

parent a2ab3fd8
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -72,23 +72,23 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
e = window.event;
}
switch (e.keyCode) {
case 16: // shift.
case 17: // ctrl.
case 18: // alt.
case 20: // caps lock.
case 33: // page up.
case 34: // page down.
case 35: // end.
case 36: // home.
case 37: // left arrow.
case 38: // up arrow.
case 39: // right arrow.
case 40: // down arrow.
case 16: // Shift.
case 17: // Ctrl.
case 18: // Alt.
case 20: // Caps lock.
case 33: // Page up.
case 34: // Page down.
case 35: // End.
case 36: // Home.
case 37: // Left arrow.
case 38: // Up arrow.
case 39: // Right arrow.
case 40: // Down arrow.
return true;
case 9: // tab.
case 13: // enter.
case 27: // esc.
case 9: // Tab.
case 13: // Enter.
case 27: // Esc.
this.hidePopup(e.keyCode);
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment