다음의 미러
https://github.com/mail-in-a-box/mailinabox.git
동기화됨 2026-09-13 00:28:01 +02:00
delay an ajax call to see if this fixes the problem of the loading indicator not going away after showing the user a panel after login
이 커밋은 다음에 포함됨:
@@ -99,8 +99,10 @@ function do_login() {
|
||||
}
|
||||
}
|
||||
|
||||
// Open the next panel the user wants to go to.
|
||||
show_panel(!switch_back_to_panel ? 'system_status' : switch_back_to_panel)
|
||||
// Open the next panel the user wants to go to. Do this after the XHR response
|
||||
// is over so that we don't start a new XHR request while this one is finishing,
|
||||
// which confuses the loading indicator.
|
||||
setTimeout(function() { show_panel(!switch_back_to_panel ? 'system_status' : switch_back_to_panel) }, 300);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
새 이슈에서 참조
사용자 차단