summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-11-06 11:40:48 -0500
committerChristopher Speller <crspeller@gmail.com>2015-11-06 11:40:48 -0500
commit5fd8b56836595d6fa1fe2cb0d0a9c9474fc4dfdd (patch)
tree4fd7d31c99dd8c90a47d1b2213eea40476dde6d1 /web/react/utils
parentcb1995eac24f4102945ea9735eb89a11c77ebdde (diff)
downloadchat-5fd8b56836595d6fa1fe2cb0d0a9c9474fc4dfdd.tar.gz
chat-5fd8b56836595d6fa1fe2cb0d0a9c9474fc4dfdd.tar.bz2
chat-5fd8b56836595d6fa1fe2cb0d0a9c9474fc4dfdd.zip
Fixing broken markdown images taking up too much space. Fixed unnessisary expantion of markdown images not in center channel.
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/markdown.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/markdown.jsx b/web/react/utils/markdown.jsx
index 374caf6dc..ee63b8689 100644
--- a/web/react/utils/markdown.jsx
+++ b/web/react/utils/markdown.jsx
@@ -94,7 +94,7 @@ class MattermostMarkdownRenderer extends marked.Renderer {
if (title) {
out += ' title="' + title + '"';
}
- out += ' onload="window.markdownImageLoaded(this)" class="markdown-inline-img"';
+ out += ' onload="window.markdownImageLoaded(this)" onerror="window.markdownImageLoaded(this)" class="markdown-inline-img"';
out += this.options.xhtml ? '/>' : '>';
return out;
}