1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-27 22:09:04 +02:00
Files
bootstrap/docs/4.0/examples/offcanvas/offcanvas.js
Mark Otto 4739795c1e v4 beta2
2017-10-19 12:22:00 -07:00

8 lines
145 B
JavaScript

$(function () {
'use strict'
$('[data-toggle="offcanvas"]').on('click', function () {
$('.row-offcanvas').toggleClass('active')
})
})