| Index: Source/devtools/front_end/UISourceCodeFrame.js
|
| diff --git a/Source/devtools/front_end/UISourceCodeFrame.js b/Source/devtools/front_end/UISourceCodeFrame.js
|
| index 053f4a83a8ef1cf3129734927d1f903d39e89233..06b5b40c426384876d23954ed22203ed09bac02d 100644
|
| --- a/Source/devtools/front_end/UISourceCodeFrame.js
|
| +++ b/Source/devtools/front_end/UISourceCodeFrame.js
|
| @@ -41,16 +41,9 @@ WebInspector.UISourceCodeFrame = function(uiSourceCode)
|
| this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyChanged, this._onWorkingCopyChanged, this);
|
| this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyCommitted, this._onWorkingCopyCommitted, this);
|
| this._updateStyle();
|
| - this.addShortcut(WebInspector.KeyboardShortcut.makeKey("s", WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta), this._commitEditing.bind(this));
|
| }
|
|
|
| WebInspector.UISourceCodeFrame.prototype = {
|
| - _commitEditing: function()
|
| - {
|
| - this.commitEditing();
|
| - return true;
|
| - },
|
| -
|
| /**
|
| * @return {!WebInspector.UISourceCode}
|
| */
|
|
|