mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-27 07:04:24 +00:00
closeModal() after group leaving instead unsatisfactory history.back()
This commit is contained in:
parent
77d51b77c2
commit
82ec957172
@ -544,14 +544,15 @@ function initInterfaceDirectMsg() {
|
||||
});
|
||||
|
||||
$('.group-messages-control .leave').on('click', function (event) {
|
||||
var groupAlias = $(event.target).closest('[data-screen-name]').attr('data-screen-name');
|
||||
var elemLeave = $(event.target);
|
||||
var groupAlias = elemLeave.closest('[data-screen-name]').attr('data-screen-name');
|
||||
event.data = {
|
||||
txtTitle: polyglot.t('сonfirm_group_leaving_header'),
|
||||
txtMessage: polyglot.t('сonfirm_group_leaving_body', {alias: groupAlias}),
|
||||
cbConfirm: function (groupAlias) {
|
||||
groupMsgLeaveGroup(groupAlias, function () {history.back();});
|
||||
cbConfirm: function (req) {
|
||||
groupMsgLeaveGroup(req.groupAlias, closeModal, req.elem);
|
||||
},
|
||||
cbConfirmReq: groupAlias
|
||||
cbConfirmReq: {groupAlias: groupAlias, elem: elemLeave}
|
||||
};
|
||||
confirmPopup(event);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user