aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-09-05 14:18:02 -0400
committerUnknwon <u@gogs.io>2015-09-05 14:18:02 -0400
commit46dce2d65311fa37f04acfb4516b0dcb8cfbde5c (patch)
tree63baad6ab446fcbf3d55ca14f616921a69df84ba
parentd48cde6ec8ec47083100326b3ac2c42e6859e078 (diff)
downloadgitea-46dce2d65311fa37f04acfb4516b0dcb8cfbde5c.tar.gz
gitea-46dce2d65311fa37f04acfb4516b0dcb8cfbde5c.zip
fix emoji edit not rendered
-rw-r--r--public/js/gogs.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js
index cf9dade5fb..982f976e0b 100644
--- a/public/js/gogs.js
+++ b/public/js/gogs.js
@@ -327,6 +327,7 @@ function initRepository() {
$render_content.html($('#no-content').html());
} else {
$render_content.html(data.content);
+ emojify.run($render_content[0]);
}
});
});