Index: Source/devtools/front_end/sources/SourcesPanel.js |
diff --git a/Source/devtools/front_end/sources/SourcesPanel.js b/Source/devtools/front_end/sources/SourcesPanel.js |
index 1798dbaaf643ad7752f149ef05955602e9002def..679b3c7e159b22a9b3ef11460fab0e34cc3a25af 100644 |
--- a/Source/devtools/front_end/sources/SourcesPanel.js |
+++ b/Source/devtools/front_end/sources/SourcesPanel.js |
@@ -983,7 +983,8 @@ WebInspector.SourcesPanel.prototype = { |
message += " " + result.description; |
result.release(); |
} |
- target.consoleModel.showErrorMessage(message) |
+ // FIXME: Make use of target once we have more targets. |
sergeyv
2014/05/29 12:44:06
We shouldn't change it
apavlov
2014/05/29 13:47:46
Done.
|
+ WebInspector.messageSink.addErrorMessage(message, true); |
} |
}, |