Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
klikini committed Jan 9, 2016
1 parent f646353 commit e41b229
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/src/display/chatpanel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -208,17 +208,18 @@ class Chat {
}
}
} else {
// display in panel
// Assemble chat message elements
String html = await chat.toHtml();
print(html);

// Parse styles, links, and emoji
html = html.replaceAll("&lt;", "<");
html = html.replaceAll("&gt;", ">");
html = parseUrl(html);
html = parseEmoji(html);
html = parseLocationLinks(html);
html = parseItemLinks(html);
print(html);

// Display in panel
dialog.appendHtml(html, validator: Chat.VALIDATOR);
}

Expand Down

0 comments on commit e41b229

Please sign in to comment.