Index: remoting/webapp/host_list.js |
diff --git a/remoting/webapp/host_list.js b/remoting/webapp/host_list.js |
index 2b2f6959e050f28c8b4538c3c1c67e82b13947b2..76b3ec3d10092d13f79ba185d50e4bfbcdee0ae8 100644 |
--- a/remoting/webapp/host_list.js |
+++ b/remoting/webapp/host_list.js |
@@ -199,11 +199,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_); |
- } |
Jamie
2012/03/03 01:38:08
The 'collapsed' style was used to animate the host
|
}; |
/** |
@@ -261,12 +256,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'; |