mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-11-25 00:38:33 +01:00
Update content of files
This commit is contained in:
parent
d62aa86011
commit
ddefc023da
2 changed files with 6 additions and 39 deletions
|
@ -1300,19 +1300,6 @@ 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;
|
||||
|
@ -2590,6 +2577,10 @@ a.tm-table-action-link:hover {
|
|||
filter: blur(7px);
|
||||
}
|
||||
|
||||
.tm-field-hint {
|
||||
margin: 8px 14px;
|
||||
}
|
||||
|
||||
.tm-number-form-group {
|
||||
margin: 36px 0 0;
|
||||
}
|
||||
|
|
|
@ -1463,14 +1463,13 @@ var Random = {
|
|||
var LoginCodes = {
|
||||
init: function() {
|
||||
Aj.onLoad(function(state) {
|
||||
var cont = Aj.ajContainer;
|
||||
$(cont).on('change.curPage', '.js-toggle-receive', LoginCodes.eToggleReceive);
|
||||
$(cont).on('click.curPage', '.js-terminate-sessions-btn', LoginCodes.eTerminateSessions);
|
||||
$('.js-toggle-receive').on('change', LoginCodes.eToggleReceive);
|
||||
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;
|
||||
});
|
||||
|
@ -1509,29 +1508,6 @@ 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);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue