2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-09 19:05:40 +00:00

Download stickers for custom emoji in export.

This commit is contained in:
John Preston
2022-07-28 17:48:28 +03:00
parent d57e752ae9
commit d80cf5d149
6 changed files with 167 additions and 8 deletions

View File

@@ -52,6 +52,16 @@ function ShowMentionName() {
return false;
}
function ShowNotLoadedEmoji() {
ShowToast("This custom emoji is not included, change data exporting settings to download.");
return false;
}
function ShowNotAvailableEmoji() {
ShowToast("This custom emoji is not available.");
return false;
}
function ShowSpoiler(target) {
if (target.classList.contains("hidden")) {
target.classList.toggle("hidden");