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

Unified Diff: chrome/browser/resources/options/about_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/about_page.js
diff --git a/chrome/browser/resources/options/about_page.js b/chrome/browser/resources/options/about_page.js
index a59d4b2efc99cf967cf353d8354ceb87faff6d96..00832696c9f35a2d9655db2de490bd27e12337b0 100644
--- a/chrome/browser/resources/options/about_page.js
+++ b/chrome/browser/resources/options/about_page.js
@@ -54,8 +54,8 @@ cr.define('options', function() {
};
$('moreInfoButton').onclick = function(event) {
- $('aboutPageLessInfo').classList.add('hidden');
- $('aboutPageMoreInfo').classList.remove('hidden');
+ $('aboutPageLessInfo').hidden = true;
+ $('aboutPageMoreInfo').hidden = false;
};
if (!AccountsOptions.currentUserIsOwner()) {

Powered by Google App Engine
This is Rietveld 408576698