Index: remoting/webapp/host_list.js |
diff --git a/remoting/webapp/host_list.js b/remoting/webapp/host_list.js |
index 7379a8bb23b14a646488e86d6f7540e478ba867a..088652052212613d57794cb2404f61bd67de4661 100644 |
--- a/remoting/webapp/host_list.js |
+++ b/remoting/webapp/host_list.js |
@@ -201,11 +201,6 @@ remoting.HostList.prototype.display = function() { |
remoting.HostList.prototype.showOrHide_ = function(show) { |
var parent = /** @type {Element} */ (this.table_.parentNode); |
parent.hidden = !show; |
- if (show) { |
- removeClass(parent, remoting.HostList.COLLAPSED_); |
- } else { |
- addClass(parent, remoting.HostList.COLLAPSED_); |
- } |
}; |
/** |
@@ -263,12 +258,6 @@ remoting.HostList.prototype.renameHost_ = function(hostTableEntry) { |
}; |
/** |
- * Class name for the host list when it is collapsed. |
- * @private |
- */ |
-remoting.HostList.COLLAPSED_ = 'collapsed'; |
- |
-/** |
* Key name under which Me2Me hosts are cached. |
*/ |
remoting.HostList.HOSTS_KEY = 'me2me-cached-hosts'; |