Update content of files

This commit is contained in:
GitHub Action 2023-03-01 20:39:09 +00:00
parent 52dfb9c60e
commit 9e77ab146a
2 changed files with 31 additions and 47 deletions

File diff suppressed because one or more lines are too long

View file

@ -106,22 +106,6 @@ var DemoApp = {
Telegram.WebApp.sendData(new Date().toString());
}
},
switchInlineQuery: function(query, choose_chat) {
var choose_chat_types = false;
if (choose_chat) {
var choose_chat_types = [];
var types = ['users', 'bots', 'groups', 'channels'];
for (var i = 0; i < types.length; i++) {
if ($('#select-' + types[i]).prop('checked')) {
choose_chat_types.push(types[i]);
}
}
if (!choose_chat_types.length) {
return DemoApp.showAlert('Select chat types!');
}
}
Telegram.WebApp.switchInlineQuery(query, choose_chat_types);
},
requestLocation: function(el) {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {