mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-09-04 18:22:18 +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) {
|
$('.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 = {
|
event.data = {
|
||||||
txtTitle: polyglot.t('сonfirm_group_leaving_header'),
|
txtTitle: polyglot.t('сonfirm_group_leaving_header'),
|
||||||
txtMessage: polyglot.t('сonfirm_group_leaving_body', {alias: groupAlias}),
|
txtMessage: polyglot.t('сonfirm_group_leaving_body', {alias: groupAlias}),
|
||||||
cbConfirm: function (groupAlias) {
|
cbConfirm: function (req) {
|
||||||
groupMsgLeaveGroup(groupAlias, function () {history.back();});
|
groupMsgLeaveGroup(req.groupAlias, closeModal, req.elem);
|
||||||
},
|
},
|
||||||
cbConfirmReq: groupAlias
|
cbConfirmReq: {groupAlias: groupAlias, elem: elemLeave}
|
||||||
};
|
};
|
||||||
confirmPopup(event);
|
confirmPopup(event);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user