summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/js/index.js12
1 files changed, 4 insertions, 8 deletions
diff --git a/public/js/index.js b/public/js/index.js
index 80d9486fd1..25915bc2ab 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -189,12 +189,6 @@ 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')
@@ -206,7 +200,8 @@ function initCommentForm() {
$menu.data('update-url'),
"",
$menu.data('issue-id'),
- $(this).data('id')
+ $(this).data('id'),
+ function() { location.reload(); }
);
}
switch (input_id) {
@@ -232,7 +227,8 @@ function initCommentForm() {
$menu.data('update-url'),
"",
$menu.data('issue-id'),
- $(this).data('id')
+ $(this).data('id'),
+ function() { location.reload(); }
);
}