Index: Source/devtools/front_end/SourcesPanel.js |
diff --git a/Source/devtools/front_end/SourcesPanel.js b/Source/devtools/front_end/SourcesPanel.js |
index acf496414b5088e62000158163de787156f93813..317a888e81a77be0bcecb1f5fc2a680c5edbf96f 100644 |
--- a/Source/devtools/front_end/SourcesPanel.js |
+++ b/Source/devtools/front_end/SourcesPanel.js |
@@ -808,7 +808,7 @@ WebInspector.SourcesPanel.prototype = { |
var enabled = WebInspector.settings.pauseOnExceptionEnabled.get(); |
this._pauseOnExceptionButton.toggled = enabled; |
this._pauseOnExceptionButton.title = WebInspector.UIString(enabled ? "Don't pause on exceptions." : "Pause on exceptions."); |
- this._debugToolbarDrawer.enableStyleClass("expanded", enabled); |
+ this._debugToolbarDrawer.classList.toggle("expanded", enabled); |
}, |
_updateDebuggerButtons: function() |