iamphill / Bootstrap-Offcanvas

:zap: Offcanvas menu built with Bootstrap
MIT License
366 stars 111 forks source link

Events fire in wrong order #54

Closed thomasgallagher closed 8 years ago

thomasgallagher commented 8 years ago
  $('body').on 'show.bs.offcanvas', '#js-bootstrap-offcanvas', ->
    console.log 'show.bs.offcanvas'

  $('body').on 'shown.bs.offcanvas', '#js-bootstrap-offcanvas', ->
    console.log 'shown.bs.offcanvas'

  $('body').on 'hide.bs.offcanvas', '#js-bootstrap-offcanvas', ->
    console.log 'hide.bs.offcanvas'

  $('body').on 'hidden.bs.offcanvas', '#js-bootstrap-offcanvas', ->
    console.log 'hidden.bs.offcanvas'

screen shot 2016-08-31 at 17 42 40