cheich / jquery.offcanvas

The easy way to arrange overloaded websites or to design user-friendly mobile navigations
11 stars 11 forks source link

Close off canvas using ESC #3

Closed jquimera closed 6 years ago

jquimera commented 6 years ago

it would be possible close the off-canvas using ESC keyboard.?

https://codepen.io/cheich/pen/XzeRdg

cheich commented 6 years ago

Just capture the keypress with js and call the hide function:

  $(document).bind('keypress', function(e) {
    if ((e.keyCode || e.which) == 27) { // ESC: 27
      $("#offcanvas-box").offcanvas("hide");
    }
  });

New codepen: https://codepen.io/cheich/pen/JLmgLJ

jquimera commented 6 years ago

@cheich When we can see version 4.0. ^^

cheich commented 6 years ago

I'm very busy lately, but the next version is almost done. Needs some bug fixings and testings though.