Slidebars
Slidebars copied to clipboard
Open sidebar with touch
Hi. Is it possible to open the sidebar with a side swipe?
Not sure what javascript events you'll need to use, these will probably be differend betweer the various browsers. But if you sent the even in the document I think it should work (not tested as I'm currently not at home) Try this:
$(document).on('**SWIPE_EVENTS**', function() {
// do your slidebars stuff
});
Replace **SWIPE_EVENTS** with the actual events. You can use multiple events separated by a space for compatibility with different browsers.