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

Unified Diff: remoting/webapp/host_list.js

Issue 9582038: CSS clean-up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed dangling brace. 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
« no previous file with comments | « remoting/webapp/connection_history.css ('k') | remoting/webapp/main.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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';
« no previous file with comments | « remoting/webapp/connection_history.css ('k') | remoting/webapp/main.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698