diff options
author | Unknwon <u@gogs.io> | 2015-09-05 14:18:02 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-05 14:18:02 -0400 |
commit | 46dce2d65311fa37f04acfb4516b0dcb8cfbde5c (patch) | |
tree | 63baad6ab446fcbf3d55ca14f616921a69df84ba /public | |
parent | d48cde6ec8ec47083100326b3ac2c42e6859e078 (diff) |
fix emoji edit not rendered
Diffstat (limited to 'public')
-rw-r--r-- | public/js/gogs.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js index cf9dade5..982f976e 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]); } }); }); |