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
2f70f152f2
commit
d85e6fe375
1 changed files with 35 additions and 0 deletions
|
@ -1719,6 +1719,11 @@ var Account = {
|
|||
Aj.onLoad(function(state) {
|
||||
cont.on('click.curPage', '.js-copy-token-btn', Account.eCopyToken);
|
||||
cont.on('click.curPage', '.js-revoke-token-btn', Account.eRevokeToken);
|
||||
state.$form = $('.api-edit-form', cont);
|
||||
Ads.formInit(state.$form);
|
||||
state.$form.on('submit', preventDefault);
|
||||
cont.on('click.curPage', '.js-save-settings-btn', Account.eApiSubmitForm);
|
||||
cont.on('change.curPage', '.pr-form-control', Account.onFieldChange);
|
||||
});
|
||||
},
|
||||
eCopyToken: function(e) {
|
||||
|
@ -1770,6 +1775,36 @@ var Account = {
|
|||
});
|
||||
});
|
||||
return false;
|
||||
},
|
||||
eApiSubmitForm: function(e) {
|
||||
e.preventDefault();
|
||||
var $form = Aj.state.$form;
|
||||
var $button = $(this);
|
||||
var params = {
|
||||
owner_id: Aj.state.ownerId,
|
||||
ip_list: $form.field('ip_list').value()
|
||||
};
|
||||
$button.prop('disabled', true);
|
||||
Aj.apiRequest('saveApiSettings', params, function(result) {
|
||||
$button.prop('disabled', false);
|
||||
if (result.error) {
|
||||
if (result.field) {
|
||||
var $field = $form.field(result.field);
|
||||
if ($field.size()) {
|
||||
Ads.showFieldError($field, result.error, true);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return showAlert(result.error);
|
||||
}
|
||||
if (result.new_ip_list) {
|
||||
$form.field('ip_list').value(result.new_ip_list).updateAutosize();
|
||||
}
|
||||
if (result.toast) {
|
||||
showToast(result.toast);
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue