mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-11-29 03:33:09 +01:00
Update content of files
This commit is contained in:
parent
bae97c454f
commit
8cd3aecacd
2 changed files with 6 additions and 8 deletions
|
@ -1048,7 +1048,9 @@ var Assets = {
|
||||||
username: username,
|
username: username,
|
||||||
auction: true
|
auction: true
|
||||||
}, function(result) {
|
}, function(result) {
|
||||||
if (result.confirm_message) {
|
if (result.error) {
|
||||||
|
return showAlert(result.error);
|
||||||
|
} else if (result.confirm_message) {
|
||||||
showConfirm(result.confirm_message, function() {
|
showConfirm(result.confirm_message, function() {
|
||||||
doPutToAuction();
|
doPutToAuction();
|
||||||
}, result.confirm_button);
|
}, result.confirm_button);
|
||||||
|
@ -1148,7 +1150,9 @@ var Assets = {
|
||||||
username: username,
|
username: username,
|
||||||
auction: false
|
auction: false
|
||||||
}, function(result) {
|
}, function(result) {
|
||||||
if (result.confirm_message) {
|
if (result.error) {
|
||||||
|
return showAlert(result.error);
|
||||||
|
} else if (result.confirm_message) {
|
||||||
showConfirm(result.confirm_message, function() {
|
showConfirm(result.confirm_message, function() {
|
||||||
doSellUsername();
|
doSellUsername();
|
||||||
}, result.confirm_button);
|
}, result.confirm_button);
|
||||||
|
|
|
@ -2218,12 +2218,6 @@ a.pr-account-button-wrap:focus {
|
||||||
.field-readonly .pr-form-control-wrap:after {
|
.field-readonly .pr-form-control-wrap:after {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.pr-form-control-wrap.has-locked .input,
|
|
||||||
.pr-form-control-wrap.has-locked input.form-control,
|
|
||||||
.pr-form-control-wrap.has-locked .select {
|
|
||||||
padding-right: 40px;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
.pr-form-control-wrap.has-photo .pr-form-control,
|
.pr-form-control-wrap.has-photo .pr-form-control,
|
||||||
.pr-form-control-wrap.has-progress.field-loading .pr-form-control {
|
.pr-form-control-wrap.has-progress.field-loading .pr-form-control {
|
||||||
padding-right: 48px;
|
padding-right: 48px;
|
||||||
|
|
Loading…
Reference in a new issue