summaryrefslogtreecommitdiffstats
path: root/app/server-control
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2018-02-28 17:02:34 -0600
committerGunnar Mills <gmills@us.ibm.com>2018-03-05 11:49:45 -0600
commiteedefd3ead28d0d276539552faad54bb709a7af5 (patch)
tree15288802210bd7049e9dea426d2866d764277b0b /app/server-control
parent9b733bdc51d3f9abffa18863cad28b5dd9c92f6f (diff)
downloadphosphor-webui-eedefd3ead28d0d276539552faad54bb709a7af5.tar.gz
phosphor-webui-eedefd3ead28d0d276539552faad54bb709a7af5.zip
Remove trailing spaces from files
Tested: Manually tested GUI for any regressions Change-Id: I8c0922b7bd67b03b07e8880bc4dba3b862220b33 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'app/server-control')
-rw-r--r--app/server-control/controllers/bmc-reboot-controller.js6
-rw-r--r--app/server-control/controllers/power-operations-controller.js8
-rw-r--r--app/server-control/controllers/remote-console-controller.js10
-rw-r--r--app/server-control/controllers/remote-console-window-controller.js10
4 files changed, 17 insertions, 17 deletions
diff --git a/app/server-control/controllers/bmc-reboot-controller.js b/app/server-control/controllers/bmc-reboot-controller.js
index a28c6ad..f5e0923 100644
--- a/app/server-control/controllers/bmc-reboot-controller.js
+++ b/app/server-control/controllers/bmc-reboot-controller.js
@@ -13,9 +13,9 @@ window.angular && (function (angular) {
angular
.module('app.serverControl')
.controller('bmcRebootController', [
- '$scope',
- '$window',
- 'APIUtils',
+ '$scope',
+ '$window',
+ 'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
diff --git a/app/server-control/controllers/power-operations-controller.js b/app/server-control/controllers/power-operations-controller.js
index 273bb19..4ae753e 100644
--- a/app/server-control/controllers/power-operations-controller.js
+++ b/app/server-control/controllers/power-operations-controller.js
@@ -13,10 +13,10 @@ window.angular && (function (angular) {
angular
.module('app.serverControl')
.controller('powerOperationsController', [
- '$scope',
- 'APIUtils',
- 'dataService',
- '$timeout',
+ '$scope',
+ 'APIUtils',
+ 'dataService',
+ '$timeout',
function($scope, APIUtils, dataService, $timeout){
$scope.dataService = dataService;
$scope.confirm = false;
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 @@ window.angular && (function (angular) {
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 @@ window.angular && (function (angular) {
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();
diff --git a/app/server-control/controllers/remote-console-window-controller.js b/app/server-control/controllers/remote-console-window-controller.js
index cb2835d..aa0e152 100644
--- a/app/server-control/controllers/remote-console-window-controller.js
+++ b/app/server-control/controllers/remote-console-window-controller.js
@@ -13,16 +13,16 @@ window.angular && (function (angular) {
angular
.module('app.serverControl')
.controller('remoteConsoleWindowController', [
- '$scope',
- '$window',
- 'APIUtils',
+ '$scope',
+ '$window',
+ 'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
dataService.showNavigation = false;
// See https://github.com/macton/hterm for available hterm options
-
+
//Storage
hterm.defaultStorage = new lib.Storage.Local();
@@ -49,7 +49,7 @@ window.angular && (function (angular) {
term.io.println('OpenBMC ver.00');
term.io.println('This is not an actual live connection.');
term.io.print('root@IBM:');
-
+
//Allows keyboard input
term.installKeyboard();
OpenPOWER on IntegriCloud