Welcome to mirror list, hosted at ThFree Co, Russian Federation.

offcanvas.js « offcanvas « examples « 4.3 « docs « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc3e467118c5f6aa9b0a25354fd0a78a3db85b45 (plain)
1
2
3
4
5
6
7
$(function () {
  'use strict'

  $('[data-toggle="offcanvas"]').on('click', function () {
    $('.offcanvas-collapse').toggleClass('open')
  })
})