mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
$('#navbarSideButton').on('click', function() {
|
|
$('#navbarSide').addClass('reveal');
|
|
$('.overlay').show();
|
|
});
|
|
$('.overlay').on('click', function(){
|
|
$('#navbarSide').removeClass('reveal');
|
|
$('.overlay').hide();
|
|
});
|