mirror of
https://github.com/MontrealGameJam/MontrealGameJam.github.io.git
synced 2026-03-24 04:01:07 +00:00
5 lines
141 B
JavaScript
5 lines
141 B
JavaScript
$(document).ready(function () {
|
|
$('.navbar-toggler').on('click', function () {
|
|
$('.burger-icon').toggleClass('open');
|
|
});
|
|
}); |