1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/_javascripts/bootstrap-offcanvas.js
Vikram Goyal d3e3233ae9 Initial Commit
2018-05-29 11:28:00 +10:00

6 lines
167 B
JavaScript

$(document).ready(function () {
$('[data-toggle="offcanvas"]').click(function () {
$('.sidebar').show();
$('.row-offcanvas').toggleClass('active');
});
});