Naltox / telegram-node-bot

Node module for creating Telegram bots.
MIT License
721 stars 143 forks source link

How to close menu? #82

Closed bushev closed 8 years ago

bushev commented 8 years ago

Hello!

How to close menu opened in this example: https://github.com/Naltox/telegram-node-bot#menu ?

bushev commented 8 years ago

The same for inline menu.

It's not pretty clear for me. 'Loading...' is newer closed..

bushev commented 8 years ago

Just added oneTimeKeyboard: true option to the menu object.

let menu = {
  message: 'Choose a pig',
  oneTimeKeyboard: true, // <----
  someMethod: () => {}
};

$.runMenu(menu);