diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-29 23:03:01 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-29 23:03:01 +0800 |
commit | be45057c3aef74c4b8bdc28ebd84c7297d1a7b62 (patch) | |
tree | 52f7d601942b249c015549f8933ef7dfa0c34d51 /public/js/app.js | |
parent | ffa59739b609ce00ce21344531f27d4003dfc688 (diff) | |
download | gitea-be45057c3aef74c4b8bdc28ebd84c7297d1a7b62.tar.gz gitea-be45057c3aef74c4b8bdc28ebd84c7297d1a7b62.zip |
fix issue ajax update
Diffstat (limited to 'public/js/app.js')
-rw-r--r-- | public/js/app.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/app.js b/public/js/app.js index 58bda9895e..5181933d24 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -454,6 +454,7 @@ function initIssue() { if (json.ok) { $('.issue-head h1.title').text(json.title); $('.issue-main > .issue-content .content').html(json.content); + $('.issue-edit-cancel').trigger("click"); } }); }); |