From 64dc31cd61fb7606acab5f3d5caf18c2c6170f23 Mon Sep 17 00:00:00 2001
From: Howard Stearns <howard@highfidelity.io>
Date: Tue, 10 May 2016 09:43:00 -0700
Subject: [PATCH] switch statement whitespace

---
 .../controllers/handControllerPointer.js      | 34 +++++++++----------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/scripts/system/controllers/handControllerPointer.js b/scripts/system/controllers/handControllerPointer.js
index e18488cfa3..6e9fe17077 100644
--- a/scripts/system/controllers/handControllerPointer.js
+++ b/scripts/system/controllers/handControllerPointer.js
@@ -308,24 +308,24 @@ function checkHardware() {
             };
         }
         switch (hardware) {
-        case 'Hydra':
-            makeHandToggle('R3', 'RightHand');
-            makeHandToggle('L3', 'LeftHand');
+            case 'Hydra':
+                makeHandToggle('R3', 'RightHand');
+                makeHandToggle('L3', 'LeftHand');
 
-            mapToAction('R3', 'ReticleClick');
-            mapToAction('L3', 'ReticleClick');
-            mapToAction('R4', 'ContextMenu');
-            mapToAction('L4', 'ContextMenu');
-            break;
-        case 'Vive':
-            // When touchpad click is NOT treated as movement, treat as left click
-            makeHandToggle('RS', 'RightHand', makeViveWhen('RS', 'RX', 'RY'));
-            makeHandToggle('LS', 'LeftHand', makeViveWhen('LS', 'LX', 'LY'));
-            clickMapping.from(Controller.Hardware.Vive.RS).when(makeViveWhen('RS', 'RX', 'RY')).to(Controller.Actions.ReticleClick);
-            clickMapping.from(Controller.Hardware.Vive.LS).when(makeViveWhen('LS', 'LX', 'LY')).to(Controller.Actions.ReticleClick);
-            mapToAction('RightApplicationMenu', 'ContextMenu');
-            mapToAction('LeftApplicationMenu', 'ContextMenu');
-            break;
+                mapToAction('R3', 'ReticleClick');
+                mapToAction('L3', 'ReticleClick');
+                mapToAction('R4', 'ContextMenu');
+                mapToAction('L4', 'ContextMenu');
+                break;
+            case 'Vive':
+                // When touchpad click is NOT treated as movement, treat as left click
+                makeHandToggle('RS', 'RightHand', makeViveWhen('RS', 'RX', 'RY'));
+                makeHandToggle('LS', 'LeftHand', makeViveWhen('LS', 'LX', 'LY'));
+                clickMapping.from(Controller.Hardware.Vive.RS).when(makeViveWhen('RS', 'RX', 'RY')).to(Controller.Actions.ReticleClick);
+                clickMapping.from(Controller.Hardware.Vive.LS).when(makeViveWhen('LS', 'LX', 'LY')).to(Controller.Actions.ReticleClick);
+                mapToAction('RightApplicationMenu', 'ContextMenu');
+                mapToAction('LeftApplicationMenu', 'ContextMenu');
+                break;
         }
         clickMappings[hardware] = clickMapping;
     }