1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-06 15:46:57 +01:00
Files
openshift-docs/_javascripts/bootstrap-offcanvas.js

6 lines
167 B
JavaScript
Raw Normal View History

2018-05-29 11:28:00 +10:00
$(document).ready(function () {
$('[data-toggle="offcanvas"]').click(function () {
$('.sidebar').show();
$('.row-offcanvas').toggleClass('active');
});
});