Remove trailing spaces from files
Tested: Manually tested GUI for any regressions
Change-Id: I8c0922b7bd67b03b07e8880bc4dba3b862220b33
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/app/server-control/controllers/remote-console-controller.js b/app/server-control/controllers/remote-console-controller.js
index c32749a..7da4526 100644
--- a/app/server-control/controllers/remote-console-controller.js
+++ b/app/server-control/controllers/remote-console-controller.js
@@ -15,15 +15,15 @@
angular
.module('app.serverControl')
.controller('remoteConsoleController', [
- '$scope',
- '$window',
- 'APIUtils',
+ '$scope',
+ '$window',
+ 'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
// See https://github.com/macton/hterm for available hterm options
-
+
//Storage
hterm.defaultStorage = new lib.Storage.Local();
@@ -50,7 +50,7 @@
term.io.println('OpenBMC ver.00');
term.io.println('This is not an actual live connection.');
term.io.print('root@OpenBmc:');
-
+
//Allows keyboard input
term.installKeyboard();