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

Unified Diff: chrome/browser/resources/options/options_page.js

Issue 7067036: Options: Remove the hidden class, since we override the hidden attribute to set (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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: chrome/browser/resources/options/options_page.js
diff --git a/chrome/browser/resources/options/options_page.js b/chrome/browser/resources/options/options_page.js
index 43606eb87437eba478a860ee67c9d3f7322cedc3..930a3a195949bd4b3264c5b8d320e18f08c15217 100644
--- a/chrome/browser/resources/options/options_page.js
+++ b/chrome/browser/resources/options/options_page.js
@@ -848,12 +848,12 @@ cr.define('options', function() {
this.setContainerVisibility_(visible);
if (visible) {
- this.pageDiv.classList.remove('hidden');
+ this.pageDiv.hidden = false;
if (this.tab)
this.tab.classList.add('navbar-item-selected');
} else {
- this.pageDiv.classList.add('hidden');
+ this.pageDiv.hidden = true;
if (this.tab)
this.tab.classList.remove('navbar-item-selected');

Powered by Google App Engine
This is Rietveld 408576698