mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-21 15:53:47 +00:00
fixes and improvements in webapps
This commit is contained in:
parent
78c224ffa8
commit
be7aaa7845
@ -186,3 +186,17 @@ fun WebApp.showPopup(
|
||||
),
|
||||
callback
|
||||
)
|
||||
|
||||
var WebApp.requireClosingConfirmation
|
||||
get() = isClosingConfirmationEnabled
|
||||
set(value) {
|
||||
if (value) {
|
||||
enableClosingConfirmation()
|
||||
} else {
|
||||
disableClosingConfirmation()
|
||||
}
|
||||
}
|
||||
|
||||
fun WebApp.toggleClosingConfirmation() {
|
||||
requireClosingConfirmation = !requireClosingConfirmation
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user