From d9ada384ee9ad1e990fb28fe4728b91f092ad17f Mon Sep 17 00:00:00 2001
From: Angie Byron <webchick@24967.no-reply.drupal.org>
Date: Fri, 30 Apr 2010 05:23:43 +0000
Subject: [PATCH] #784848 by kbgordon7 : Fixed Coding style for comments in
 autocomplete.js.

---
 misc/autocomplete.js | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/misc/autocomplete.js b/misc/autocomplete.js
index 73aafbf68757..506b9cf18037 100644
--- a/misc/autocomplete.js
+++ b/misc/autocomplete.js
@@ -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;
 
-- 
GitLab