diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-01 10:36:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-01 10:36:08 +0800 |
commit | 081485ecfddc88a05fdea0b0230672271658c086 (patch) | |
tree | bbaaa55ede02f311056f5df6c8b56301be09982d /public | |
parent | 10644d6dd7574b031118bf01b2bd737017230ffd (diff) | |
download | gitea-081485ecfddc88a05fdea0b0230672271658c086.tar.gz gitea-081485ecfddc88a05fdea0b0230672271658c086.zip |
add milestone changed traker on issue view (#804)
Diffstat (limited to 'public')
-rw-r--r-- | public/js/index.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/public/js/index.js b/public/js/index.js index e52da6e5ba..086ec7656f 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -168,6 +168,12 @@ function initCommentForm() { var $list = $('.ui' + select_id + '.list'); var hasUpdateAction = $menu.data('action') == 'update'; + $(select_id).dropdown('setting', 'onHide', function(){ + if (hasUpdateAction) { + location.reload(); + } + }); + $menu.find('.item:not(.no-select)').click(function () { $(this).parent().find('.item').each(function () { $(this).removeClass('selected active') |