summaryrefslogtreecommitdiffstats
path: root/app/redfish/controllers/redfish-controller.html
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2018-09-25 14:10:45 -0500
committerGunnar Mills <gmills@us.ibm.com>2018-09-25 21:11:35 +0000
commit5f0b776753678897722eb9fc7bb269cf5e47c10a (patch)
tree4244ea54671377be73c3089b2d8de63d4131dae4 /app/redfish/controllers/redfish-controller.html
parent3d0a4d96d8f02208e0fb6ad7bfb2d20a6753c5e7 (diff)
downloadphosphor-webui-5f0b776753678897722eb9fc7bb269cf5e47c10a.tar.gz
phosphor-webui-5f0b776753678897722eb9fc7bb269cf5e47c10a.zip
Remove tabs from HTML files
From https://google.github.io/styleguide/htmlcssguide.html "Indentation Indent by 2 spaces at a time. Don't use tabs or mix tabs and spaces for indentation." Tested: Manual regression testing on a Witherspoon. Change-Id: Ief7137dabc869b73b73f9947337fbb0abb5ca497 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'app/redfish/controllers/redfish-controller.html')
-rw-r--r--app/redfish/controllers/redfish-controller.html54
1 files changed, 27 insertions, 27 deletions
diff --git a/app/redfish/controllers/redfish-controller.html b/app/redfish/controllers/redfish-controller.html
index eff1f8a..9446c92 100644
--- a/app/redfish/controllers/redfish-controller.html
+++ b/app/redfish/controllers/redfish-controller.html
@@ -1,42 +1,42 @@
<loader loading="loading"></loader>
<div id="redfish">
- <div class="row column">
- <div style="max-width: 400px;margin:0">
- <img src="../../assets/images/DMTF_Redfish_logo_2017.svg">
- </div>
- </div>
- <div class="row column">
- {
- <ul style="list-style: none;">
- <li ng-repeat="(key, value) in redfishData" ng-include="'recurse'"> </li>
- </ul>
- }
- </div>
+ <div class="row column">
+ <div style="max-width: 400px;margin:0">
+ <img src="../../assets/images/DMTF_Redfish_logo_2017.svg">
+ </div>
+ </div>
+ <div class="row column">
+ {
+ <ul style="list-style: none;">
+ <li ng-repeat="(key, value) in redfishData" ng-include="'recurse'"> </li>
+ </ul>
+ }
+ </div>
</div>
<script type="text/ng-template" id="recurse">
"<b>{{key}}</b>":
<span ng-if="isObject(value) && !isArray(value)">
{
- <ul style="list-style: none;">
- <li ng-repeat="(key, value) in value" ng-include="'recurse'"> </li>
- </ul>
+ <ul style="list-style: none;">
+ <li ng-repeat="(key, value) in value" ng-include="'recurse'"> </li>
+ </ul>
},</br>
</span>
<span ng-if="isArray(value)">
[
- <div ng-repeat="val in value" style="margin-left: 2em;">
- <span ng-if="isObject(val) && !isArray(val)">
- {
- <ul style="list-style: none;">
- <li ng-repeat="(key, value) in val" ng-include="'recurse'"> </li>
- </ul>
- },</br>
- </span>
- <span ng-if="!isObject(val) && !isArray(val)">
- {{val}}
- </span>
- </div>
+ <div ng-repeat="val in value" style="margin-left: 2em;">
+ <span ng-if="isObject(val) && !isArray(val)">
+ {
+ <ul style="list-style: none;">
+ <li ng-repeat="(key, value) in val" ng-include="'recurse'"> </li>
+ </ul>
+ },</br>
+ </span>
+ <span ng-if="!isObject(val) && !isArray(val)">
+ {{val}}
+ </span>
+ </div>
]
</span>
OpenPOWER on IntegriCloud