Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: sky/framework/inspector/inspector.sky

Issue 766683005: Populate scope sections with variable name/values (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Removed unused code Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/framework/inspector/inspector.sky
diff --git a/sky/framework/inspector/inspector.sky b/sky/framework/inspector/inspector.sky
index b87ff75f98576b81e596fec2b2fb59bd5b253ca4..62c53fb3bf2fca72a4d6cb2f24ea0e80709ead83 100644
--- a/sky/framework/inspector/inspector.sky
+++ b/sky/framework/inspector/inspector.sky
@@ -82,7 +82,7 @@ InspectorBackend.prototype.onMessage = function(data) {
return;
this.unansweredMessages_.push(message.id);
// FIXME: This magic return value is kinda hacky.
- if (result != this.ASYNC_RESPONSE)
+ if (result !== this.ASYNC_RESPONSE)
this.sendResponse(message.id, result);
else {
window.setTimeout(function() {

Powered by Google App Engine
This is Rietveld 408576698