unable to open navigation bar on swipeleft
Hi,
I am trying to open the navigation panel grammatically when swipeleft but nothing is happening. Here is what I am trying:
- $(document).on("swipeleft", function(e)
- {
- if ($.mobile.activePage.find("#nav-panel").is(":visible"))
- {
- if (e.type === "swipeleft")
- {
- $("#nav-panel").panel("open");
- }
- }
- });
Regards,