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/templates.js b/app/templates.js
index c1c7cc3..5cc6852 100644
--- a/app/templates.js
+++ b/app/templates.js
@@ -5,13 +5,13 @@
  * @exports app/templates
  */
 
-window.angular && (function (angular) {
-    'use strict';
+window.angular && (function(angular) {
+  'use strict';
 
-    /**
-     * Used for gulp template cache plugin.
-     */
-    angular
-        .module('app.templates', []);
+  /**
+   * Used for gulp template cache plugin.
+   */
+  angular
+    .module('app.templates', []);
 
 })(window.angular);