| Index: Source/devtools/front_end/SearchableView.js
|
| diff --git a/Source/devtools/front_end/SearchableView.js b/Source/devtools/front_end/SearchableView.js
|
| index a3e9816e40b276d766bb76e27ccc0c8df1043ea7..53b4fdd27bca086e12223a670cb8850c682bfb1e 100644
|
| --- a/Source/devtools/front_end/SearchableView.js
|
| +++ b/Source/devtools/front_end/SearchableView.js
|
| @@ -244,7 +244,7 @@ WebInspector.SearchableView.prototype = {
|
|
|
| _toggleSearchBar: function(toggled)
|
| {
|
| - this._footerElementContainer.enableStyleClass("hidden", !toggled);
|
| + this._footerElementContainer.classList.toggle("hidden", !toggled);
|
| this.doResize();
|
| },
|
|
|
| @@ -363,7 +363,7 @@ WebInspector.SearchableView.prototype = {
|
|
|
| _updateReplaceVisibility: function()
|
| {
|
| - this._replaceElement.enableStyleClass("hidden", !this._replaceable);
|
| + this._replaceElement.classList.toggle("hidden", !this._replaceable);
|
| if (!this._replaceable) {
|
| this._replaceCheckboxElement.checked = false;
|
| this._updateSecondRowVisibility();
|
|
|