Chromium Code Reviews| Index: Source/devtools/front_end/audits/AuditLauncherView.js |
| diff --git a/Source/devtools/front_end/audits/AuditLauncherView.js b/Source/devtools/front_end/audits/AuditLauncherView.js |
| index 7487eeb8793d04f5fcd734e0d6a2259a922dd3c6..e67375dbaa0883380a7378518e6696dd124a0f4e 100644 |
| --- a/Source/devtools/front_end/audits/AuditLauncherView.js |
| +++ b/Source/devtools/front_end/audits/AuditLauncherView.js |
| @@ -173,7 +173,8 @@ WebInspector.AuditLauncherView.prototype = { |
| _toggleUIComponents: function(disable) |
| { |
| this._selectAllCheckboxElement.disabled = disable; |
| - this._categoriesElement.disabled = disable; |
| + for (var child = this._categoriesElement.firstChild; child; child = child.nextSibling) |
|
lushnikov
2015/06/22 13:51:12
why iterate over dom?
|
| + child.checkboxElement.disabled = disable; |
| this._auditPresentStateElement.disabled = disable; |
| this._auditReloadedStateElement.disabled = disable; |
| }, |