Slidebars icon indicating copy to clipboard operation
Slidebars copied to clipboard

Open sidebar with touch

Open erikandershed opened this issue 9 years ago • 1 comments

Hi. Is it possible to open the sidebar with a side swipe?

erikandershed avatar Aug 18 '16 07:08 erikandershed

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.

JoryHogeveen avatar Sep 07 '16 00:09 JoryHogeveen