Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1552)

Unified Diff: remoting/webapp/host_list.js

Issue 9582038: CSS clean-up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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';

Powered by Google App Engine
This is Rietveld 408576698