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

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

  document.querySelector('#navbarSideCollapse').addEventListener('click', function () {
    document.querySelector('.offcanvas-collapse').classList.toggle('open')
  })
})()