diff options
| author | Gunnar Mills <gmills@us.ibm.com> | 2018-09-05 17:02:17 -0500 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2018-09-10 20:25:29 +0000 |
| commit | 0ae2918e750fb5b7433c87dcdfbb3938d2e01849 (patch) | |
| tree | a7c197cb3f7b421d53449e3c3d74055e1cc5885e /app/common/services | |
| parent | ce877482b9dc005a47cdce2d1654dd25689c9c3c (diff) | |
| download | phosphor-webui-0ae2918e750fb5b7433c87dcdfbb3938d2e01849.tar.gz phosphor-webui-0ae2918e750fb5b7433c87dcdfbb3938d2e01849.zip | |
Remove remote_window_active
remote_window_active is no longer used. Remove in:
https://gerrit.openbmc-project.xyz/#/c/openbmc/phosphor-webui/+/12344/
Change-Id: I9629e64daa3dee9907a0a872fa1743fb4438f7ae
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'app/common/services')
| -rw-r--r-- | app/common/services/dataService.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/app/common/services/dataService.js b/app/common/services/dataService.js index 63f9a72..87289e5 100644 --- a/app/common/services/dataService.js +++ b/app/common/services/dataService.js @@ -30,7 +30,6 @@ window.angular && (function(angular) { this.hostname = ''; this.mac_address = ''; this.defaultgateway = ''; - this.remote_window_active = false; this.displayErrorModal = false; this.errorModalDetails = {}; @@ -99,14 +98,6 @@ window.angular && (function(angular) { this.server_status = Constants.HOST_STATE.unreachable; }; - this.setRemoteWindowActive = function() { - this.remote_window_active = true; - }; - - this.setRemoteWindowInactive = function() { - this.remote_window_active = false; - }; - this.updateServerHealth = function(logs) { var criticals = logs.filter(function(item) { return item.health_flags.critical == true; |

