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

offcanvas.js « offcanvas « examples « docs - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12f2dff51d7de9118240ec3e7cb31231716428eb (plain)
1
2
3
4
5
$(document).ready(function() {
  $('[data-toggle=offcanvas]').click(function() {
    $('.row-offcanvas').toggleClass('active');
  });
});