Update content of files

This commit is contained in:
GitHub Action 2024-06-03 20:38:47 +00:00
parent 9a0789e706
commit 90b8749eff
2 changed files with 39 additions and 6 deletions

View file

@ -1300,6 +1300,19 @@ a.tm-menu-link:focus {
background: var(--field-bg-color);
position: relative;
}
.tm-field-hint {
margin: 8px 14px;
}
.tm-field .form-control-link {
cursor: pointer;
}
.tm-field .form-control-link:hover {
text-decoration: none;
}
.tm-field .form-control-link.urgent {
color: var(--unavail-color);
}
.tm-search-field:before {
position: absolute;
margin: 4px 9px;
@ -2577,10 +2590,6 @@ a.tm-table-action-link:hover {
filter: blur(7px);
}
.tm-field-hint {
margin: 8px 14px;
}
.tm-number-form-group {
margin: 36px 0 0;
}

View file

@ -1463,13 +1463,14 @@ var Random = {
var LoginCodes = {
init: function() {
Aj.onLoad(function(state) {
$('.js-toggle-receive').on('change', LoginCodes.eToggleReceive);
var cont = Aj.ajContainer;
$(cont).on('change.curPage', '.js-toggle-receive', LoginCodes.eToggleReceive);
$(cont).on('click.curPage', '.js-terminate-sessions-btn', LoginCodes.eTerminateSessions);
state.needUpdate = true;
state.updLastReq = +Date.now();
state.updStateTo = setTimeout(LoginCodes.updateState, Main.UPDATE_PERIOD);
});
Aj.onUnload(function(state) {
$('.js-toggle-receive').off('change', LoginCodes.eToggleReceive);
clearTimeout(state.updStateTo);
state.needUpdate = false;
});
@ -1508,6 +1509,29 @@ var LoginCodes = {
number: Aj.state.number,
can_receive: can_receive ? 1 : 0
});
},
eTerminateSessions: function(e) {
e.preventDefault();
LoginCodes.terminateSessions();
},
terminateSessions: function(terminate_hash) {
Aj.apiRequest('terminatePhoneSessions', {
number: Aj.state.number,
terminate_hash: terminate_hash
}, function(result) {
if (result.error) {
return showAlert(result.error);
} else if (result.terminate_hash) {
showConfirm(result.confirm_message, function() {
LoginCodes.terminateSessions(result.terminate_hash);
}, result.confirm_button);
} else {
$('.js-terminate-sessions-wrap').hide();
if (result.msg) {
showAlert(result.msg);
}
}
});
}
};