denehyg / reveal.js-menu

Slide out menu for reveal.js
https://denehyg.github.io/reveal.js-menu
MIT License
281 stars 76 forks source link

Trigger menu via a normal link #35

Closed jcamp closed 7 years ago

jcamp commented 7 years ago

I know there is a way ... Just want to trigger the menu from a link in text as well?

Cheers Jonathan

denehyg commented 7 years ago

There's an undocumented API that can be used for this: RevealMenu.toggle() will open/close the menu, and RevealMenu.isOpen() will return true is the menu is currently open.

For example...

<a href="#" onclick="RevealMenu.toggle(); return false;">menu link</a>
jcamp commented 7 years ago

Ah! brilliant - exactly what I needed - thanks. Cheers Jonathan