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

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

  document.querySelector('[data-toggle="offcanvas"]').addEventListener('click', function () {
    document.querySelector('.offcanvas-collapse').classList.toggle('open')
  })
})()