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

Unified Diff: chrome/browser/resources/extensions/extensions.js

Issue 10828008: Fix animation when toggling Developer Mode on Extensions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 | « chrome/browser/resources/extensions/extensions.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/extensions/extensions.js
===================================================================
--- chrome/browser/resources/extensions/extensions.js (revision 147832)
+++ chrome/browser/resources/extensions/extensions.js (working copy)
@@ -237,6 +237,7 @@
if (extensionsData.developerMode && !extensionsData.managedMode) {
pageDiv.classList.add('dev-mode');
$('toggle-dev-on').checked = true;
+ $('dev-controls').hidden = false;
} else {
pageDiv.classList.remove('dev-mode');
$('toggle-dev-on').checked = false;
« no previous file with comments | « chrome/browser/resources/extensions/extensions.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698