HomeSort by relevance Sort by last modified time
    Searched refs:_button (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
InplaceFormatterEditorAction.js 39 this._button.element.classList.toggle("hidden", !this._isFormattable(uiSourceCode));
48 if (this._button)
49 return this._button.element;
55 this._button = new WebInspector.StatusBarButton(WebInspector.UIString("Format"), "sources-toggle-pretty-print-status-bar-item");
56 this._button.toggled = false;
57 this._button.addEventListener("click", this._formatSourceInPlace, this);
60 return this._button.element;
ScriptFormatterEditorAction.js 215 this._button.element.classList.toggle("hidden", !this._isFormatableScript(uiSourceCode));
224 if (this._button)
225 return this._button.element;
231 this._button = new WebInspector.StatusBarButton(WebInspector.UIString("Pretty print"), "sources-toggle-pretty-print-status-bar-item");
232 this._button.toggled = false;
233 this._button.addEventListener("click", this._toggleFormatScriptSource, this);
236 return this._button.element;

Completed in 31 milliseconds