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/multi-server/index.js b/app/multi-server/index.js
index c4f8e61..97bd67a 100644
--- a/app/multi-server/index.js
+++ b/app/multi-server/index.js
@@ -5,23 +5,23 @@
* @exports app/multi-server
*/
-window.angular && (function (angular) {
- 'use strict';
+window.angular && (function(angular) {
+ 'use strict';
- angular
- .module('app.multiServer', [
- 'ngRoute',
- 'app.constants',
- 'app.common.services'
- ])
- // Route configuration
- .config(['$routeProvider', function ($routeProvider) {
- $routeProvider
- .when('/multi-server/overview', {
- 'template': require('./controllers/multi-server-controller.html'),
- 'controller': 'multiServerController',
- authenticated: true
- });
- }]);
+ angular
+ .module('app.multiServer', [
+ 'ngRoute',
+ 'app.constants',
+ 'app.common.services'
+ ])
+ // Route configuration
+ .config(['$routeProvider', function($routeProvider) {
+ $routeProvider
+ .when('/multi-server/overview', {
+ 'template': require('./controllers/multi-server-controller.html'),
+ 'controller': 'multiServerController',
+ authenticated: true
+ });
+ }]);
})(window.angular);