| Index: Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| diff --git a/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| index 12d4c4514133c71a3c7cac06ef9382ee120ff059..6c0bacdb7442dacf3d5c8388e5e46b8bd3f3021c 100644
|
| --- a/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| +++ b/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| @@ -360,20 +360,21 @@ WebInspector.JavaScriptSourceFrame.prototype = {
|
| */
|
| function liveEditCallback(error, errorData, script)
|
| {
|
| + this._scriptsPanel.setIgnoreExecutionLineEvents(false);
|
| if (error) {
|
| liveEditError = error;
|
| liveEditErrorData = errorData;
|
| contextScript = script;
|
| - failedEdits++;
|
| - } else
|
| - succeededEdits++;
|
| + ++failedEdits;
|
| + } else {
|
| + ++succeededEdits;
|
| + }
|
|
|
| if (succeededEdits + failedEdits !== scriptFiles.length)
|
| return;
|
|
|
| if (failedEdits)
|
| logLiveEditError.call(this, liveEditError, liveEditErrorData, contextScript);
|
| - this._scriptsPanel.setIgnoreExecutionLineEvents(false);
|
| }
|
|
|
| /**
|
|
|