I have created a side menu using jasny bootstrap
add-on. The markup is rather simple:
<div class="navmenu navmenu-inverse navmenu-fixed-right offcanvas-sm sidemenu">
<ul class="nav navmenu-nav>
<li></li>
<!-- many more <li> which may have <ul> nested -->
</ul>
</div>
The thing is that it is not scrollable on phones. When I try to scroll it it just doesn't work.
I was trying to check it deeply using the iOS Simulator with web inspector and try to bind some events. I tried binding the scroll
event to the .sidemenu
but this event never triggered. I've then tried bind the touchstart
event and it worked as expected. I guess it means that it does recognise my touch but it just doesn't recognise the scroll gesture?
Any idea why it doesn't work?