Skip to content

Commit

Permalink
MiniParseOverlay: change event name
Browse files Browse the repository at this point in the history
  • Loading branch information
hibiyasleep committed Mar 13, 2017
1 parent dd2b9f9 commit 3856266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OverlayPlugin.Core/Overlays/MiniParseLoglineReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private void sendEchoEvent(bool isImported, string type, string text)
message["type"] = type;
message["message"] = text;
this.Overlay.Renderer.ExecuteScript(
"document.dispatchEvent(new CustomEvent('onEcho', { detail: " + message.ToString() + " } ));"
"document.dispatchEvent(new CustomEvent('onLogLine', { detail: " + message.ToString() + " } ));"
);
}
}
Expand Down

0 comments on commit 3856266

Please sign in to comment.