mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-12-28 23:38:26 +01:00
Update content of files
This commit is contained in:
parent
3297b35efe
commit
5f8657df30
2 changed files with 19 additions and 7 deletions
|
@ -764,8 +764,8 @@ var Auction = {
|
|||
var mult = Aj.state.offerFeeMult;
|
||||
var fee = Math.ceil(amount * mult);
|
||||
var fee_val = Math.max(Aj.state.offerFeeMin, Math.min(fee, Aj.state.offerFeeMax));
|
||||
Aj.state.offerFee = fee_val;
|
||||
$('.js-amount_fee', Aj.state.$makeOfferForm).html(Main.wrapTonAmount(fee_val));
|
||||
Aj.state.offerFee = Main.wrapTonAmount(fee_val);
|
||||
$('.js-amount_fee', Aj.state.$makeOfferForm).html(Aj.state.offerFee);
|
||||
};
|
||||
openPopup(Aj.state.$makeOfferPopup, {
|
||||
onOpen: function() {
|
||||
|
@ -802,13 +802,13 @@ var Auction = {
|
|||
},
|
||||
title: l('WEB_POPUP_QR_OFFER_HEADER'),
|
||||
description: l('WEB_POPUP_QR_OFFER_TEXT', {
|
||||
amount: '<span class="icon-before icon-ton-text js-amount_fee">' + Main.wrapTonAmount(Aj.state.offerFee) + '</span>'
|
||||
amount: '<span class="icon-before icon-ton-text js-amount_fee">' + Aj.state.offerFee + '</span>'
|
||||
}),
|
||||
qr_label: item_title,
|
||||
tk_label: l('WEB_POPUP_QR_OFFER_TK_BUTTON'),
|
||||
terms_label: l('WEB_POPUP_QR_PROCEED_TERMS'),
|
||||
onDataUpdate: function(data) {
|
||||
$('.js-amount_fee', this).html(Main.wrapTonAmount(data.fee));
|
||||
$('.js-amount_fee', this).html(data.fee);
|
||||
},
|
||||
onConfirm: function(by_server) {
|
||||
if (by_server) {
|
||||
|
@ -1013,7 +1013,7 @@ var Assets = {
|
|||
},
|
||||
title: l('WEB_POPUP_QR_BOT_USERNAME_HEADER'),
|
||||
description: l('WEB_POPUP_QR_BOT_USERNAME_TEXT', {
|
||||
amount: '<span class="icon-before icon-ton-text js-amount_fee">' + Main.wrapTonAmount(Aj.state.botUsernameFee) + '</span>'
|
||||
amount: '<span class="icon-before icon-ton-text js-amount_fee">' + Aj.state.botUsernameFee + '</span>'
|
||||
}),
|
||||
qr_label: '@' + Aj.state.botUsername,
|
||||
tk_label: l('WEB_POPUP_QR_BOT_USERNAME_TK_BUTTON'),
|
||||
|
@ -1850,7 +1850,7 @@ var Premium = {
|
|||
},
|
||||
title: l('WEB_POPUP_QR_PREMIUM_HEADER'),
|
||||
description: l('WEB_POPUP_QR_PREMIUM_TEXT', {
|
||||
amount: '<span class="icon-before icon-ton-text js-amount_fee">' + Main.wrapTonAmount(Aj.state.giftPrice) + '</span>'
|
||||
amount: '<span class="icon-before icon-ton-text js-amount_fee">' + Aj.state.giftPrice + '</span>'
|
||||
}),
|
||||
qr_label: item_title,
|
||||
tk_label: l('WEB_POPUP_QR_PREMIUM_TK_BUTTON'),
|
||||
|
|
|
@ -71,7 +71,19 @@
|
|||
<div class="dev_page_bread_crumbs"></div>
|
||||
<h1 id="dev_page_title">Version history</h1>
|
||||
|
||||
<div id="dev_page_content"><h3><a class="anchor" name="v9-5-3-2023-03-27" href="#v9-5-3-2023-03-27"><i class='anchor-icon'></i></a>9.5.3 <strong>2023-03-27</strong></h3>
|
||||
<div id="dev_page_content"><h3><a class="anchor" name="v9-6-2023-04-21" href="#v9-6-2023-04-21"><i class='anchor-icon'></i></a>9.6 <strong>2023-04-21</strong></h3>
|
||||
<ul>
|
||||
<li>SHAREABLE FOLDERS AND CUSTOM WALLPAPERS</li>
|
||||
<li>Shareable Folders</li>
|
||||
<li>Share folders that include dozens of chats with friends or colleagues.</li>
|
||||
<li>Anyone you invite can add the folder and join all its chats in one tap.</li>
|
||||
<li>You can create multiple invite links to give different people access to different chats in the folder.</li>
|
||||
<li>Custom Wallpapers</li>
|
||||
<li>Set a custom wallpaper for any 1-on-1 chat.</li>
|
||||
<li>Your chat partner can apply the same wallpaper – or choose their own.</li>
|
||||
</ul>
|
||||
|
||||
<h3><a class="anchor" name="v9-5-3-2023-03-27" href="#v9-5-3-2023-03-27"><i class='anchor-icon'></i></a>9.5.3 <strong>2023-03-27</strong></h3>
|
||||
<ul>
|
||||
<li>Power Saving Mode</li>
|
||||
<li>New switch to disable all resource-intensive processes with one click.</li>
|
||||
|
|
Loading…
Reference in a new issue