Run js-beautify and fixjsstyle on code

Found this pointer on stackoverflow:
https://stackoverflow.com/a/31660434/5508494

End goal is to get the code formatted well enough that
clang format will run correctly against it.

Change-Id: I80053e78d253d8eee49233e42d55e5807ae8fdc8
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/app/server-health/controllers/sensors-controller.js b/app/server-health/controllers/sensors-controller.js
index c0ad76e..70f3e9c 100644
--- a/app/server-health/controllers/sensors-controller.js
+++ b/app/server-health/controllers/sensors-controller.js
@@ -6,133 +6,136 @@
  * @name sensorsController
  */
 
-window.angular && (function (angular) {
-    'use strict';
-    var sensorData = [];
-    angular
-        .module('app.overview')
-        .controller('sensorsController', [
-            '$scope',
-            '$log',
-            '$window',
-            'APIUtils',
-            'dataService',
-            '$routeParams',
-            function($scope, $log, $window, APIUtils, dataService, $routeParams){
-                $scope.dataService = dataService;
-                $scope.customSearch = "";
-                $scope.dropdown_selected = false;
-                $scope.$log = $log;
-                $scope.data = {};
-                $scope.searchTerms = [];
+window.angular && (function(angular) {
+  'use strict';
+  var sensorData = [];
+  angular
+    .module('app.overview')
+    .controller('sensorsController', [
+      '$scope',
+      '$log',
+      '$window',
+      'APIUtils',
+      'dataService',
+      '$routeParams',
+      function($scope, $log, $window, APIUtils, dataService, $routeParams) {
+        $scope.dataService = dataService;
+        $scope.customSearch = '';
+        $scope.dropdown_selected = false;
+        $scope.$log = $log;
+        $scope.data = {};
+        $scope.searchTerms = [];
 
-                $scope.selectedSeverity = {
-                    all: true,
-                    normal: false,
-                    warning: false,
-                    critical: false
-                };
+        $scope.selectedSeverity = {
+          all: true,
+          normal: false,
+          warning: false,
+          critical: false
+        };
 
-                var sensorType = $routeParams.type;
+        var sensorType = $routeParams.type;
 
-                $scope.export_name = sensorType + "_sensors.json";
+        $scope.export_name = sensorType + '_sensors.json';
 
-                $scope.toggleSeverityAll = function(){
-                    $scope.selectedSeverity.all = !$scope.selectedSeverity.all;
+        $scope.toggleSeverityAll = function() {
+          $scope.selectedSeverity.all = !$scope.selectedSeverity.all;
 
-                    if($scope.selectedSeverity.all){
-                        $scope.selectedSeverity.normal = false;
-                        $scope.selectedSeverity.warning = false;
-                        $scope.selectedSeverity.critical = false;
-                    }
-                }
+          if ($scope.selectedSeverity.all) {
+            $scope.selectedSeverity.normal = false;
+            $scope.selectedSeverity.warning = false;
+            $scope.selectedSeverity.critical = false;
+          }
+        };
 
-                $scope.toggleSeverity = function(severity){
-                    $scope.selectedSeverity[severity] = !$scope.selectedSeverity[severity];
+        $scope.toggleSeverity = function(severity) {
+          $scope.selectedSeverity[severity] = !$scope.selectedSeverity[severity];
 
-                    if($scope.selectedSeverity.normal &&
-                       $scope.selectedSeverity.warning &&
-                       $scope.selectedSeverity.critical){
-                        $scope.selectedSeverity.all = true;
-                        $scope.selectedSeverity.normal = false;
-                        $scope.selectedSeverity.warning = false;
-                        $scope.selectedSeverity.critical = false;
-                    }else{
-                        $scope.selectedSeverity.all = false;
-                    }
-                }
+          if ($scope.selectedSeverity.normal &&
+            $scope.selectedSeverity.warning &&
+            $scope.selectedSeverity.critical) {
+            $scope.selectedSeverity.all = true;
+            $scope.selectedSeverity.normal = false;
+            $scope.selectedSeverity.warning = false;
+            $scope.selectedSeverity.critical = false;
+          }
+          else {
+            $scope.selectedSeverity.all = false;
+          }
+        };
 
-                $scope.doSearchOnEnter = function (event) {
-                    var search = $scope.customSearch.replace(/^\s+/g,'').replace(/\s+$/g,'');
-                    if (event.keyCode === 13 &&
-                        search.length >= 2) {
-                        $scope.searchTerms = $scope.customSearch.split(" ");
-                    }else{
-                        if(search.length == 0){
-                            $scope.searchTerms = [];
-                        }
-                    }
-                };
-
-                $scope.doSearchOnClick = function() {
-                    var search = $scope.customSearch.replace(/^\s+/g,'').replace(/\s+$/g,'');
-                    if (search.length >= 2) {
-                        $scope.searchTerms = $scope.customSearch.split(" ");
-                    }else{
-                        if(search.length == 0){
-                            $scope.searchTerms = [];
-                        }
-                    }
-                }
-
-                $scope.jsonData = function(data){
-                    var dt = {};
-                    data.data.forEach(function(item){
-                        dt[item.original_data.key] = item.original_data.value;
-                    });
-                    return JSON.stringify(dt);
-                };
-
-                $scope.filterBySeverity = function(sensor){
-                    if($scope.selectedSeverity.all) return true;
-
-                    return( (sensor.severity_flags.normal && $scope.selectedSeverity.normal) ||
-                            (sensor.severity_flags.warning && $scope.selectedSeverity.warning) ||
-                            (sensor.severity_flags.critical && $scope.selectedSeverity.critical)
-                    );
-                }
-                $scope.filterBySearchTerms = function(sensor){
-
-                    if(!$scope.searchTerms.length) return true;
-
-                    for(var i = 0, length = $scope.searchTerms.length; i < length; i++){
-                        if(sensor.search_text.indexOf($scope.searchTerms[i].toLowerCase()) == -1) return false;
-                    }
-                    return true;
-                }
-
-                function setSensorData(){
-                    var data = dataService.sensorData.sensors.filter(function(item){
-                        return item.type == sensorType;
-                    });
-                    if(data.length){
-                        sensorData = data[0];
-                        $scope.data = sensorData;
-                        $scope.export_data = $scope.jsonData($scope.data);
-                    }
-                }
-
-                if(!dataService.sensorData.sensors){
-                    APIUtils.getAllSensorStatus(function(data, originalData){
-                        dataService.sensorData = data;
-                        setSensorData();
-                    });
-                }else{
-                    setSensorData();
-                }
-
+        $scope.doSearchOnEnter = function(event) {
+          var search = $scope.customSearch.replace(/^\s+/g, '').replace(/\s+$/g, '');
+          if (event.keyCode === 13 &&
+            search.length >= 2) {
+            $scope.searchTerms = $scope.customSearch.split(' ');
+          }
+          else {
+            if (search.length == 0) {
+              $scope.searchTerms = [];
             }
-        ]
-    );
+          }
+        };
 
-})(angular);
\ No newline at end of file
+        $scope.doSearchOnClick = function() {
+          var search = $scope.customSearch.replace(/^\s+/g, '').replace(/\s+$/g, '');
+          if (search.length >= 2) {
+            $scope.searchTerms = $scope.customSearch.split(' ');
+          }
+          else {
+            if (search.length == 0) {
+              $scope.searchTerms = [];
+            }
+          }
+        };
+
+        $scope.jsonData = function(data) {
+          var dt = {};
+          data.data.forEach(function(item) {
+            dt[item.original_data.key] = item.original_data.value;
+          });
+          return JSON.stringify(dt);
+        };
+
+        $scope.filterBySeverity = function(sensor) {
+          if ($scope.selectedSeverity.all) return true;
+
+          return ((sensor.severity_flags.normal && $scope.selectedSeverity.normal) ||
+            (sensor.severity_flags.warning && $scope.selectedSeverity.warning) ||
+            (sensor.severity_flags.critical && $scope.selectedSeverity.critical)
+          );
+        };
+        $scope.filterBySearchTerms = function(sensor) {
+
+          if (!$scope.searchTerms.length) return true;
+
+          for (var i = 0, length = $scope.searchTerms.length; i < length; i++) {
+            if (sensor.search_text.indexOf($scope.searchTerms[i].toLowerCase()) == -1) return false;
+          }
+          return true;
+        };
+
+        function setSensorData() {
+          var data = dataService.sensorData.sensors.filter(function(item) {
+            return item.type == sensorType;
+          });
+          if (data.length) {
+            sensorData = data[0];
+            $scope.data = sensorData;
+            $scope.export_data = $scope.jsonData($scope.data);
+          }
+        }
+
+        if (!dataService.sensorData.sensors) {
+          APIUtils.getAllSensorStatus(function(data, originalData) {
+            dataService.sensorData = data;
+            setSensorData();
+          });
+        }
+        else {
+          setSensorData();
+        }
+
+      }
+    ]);
+
+})(angular);