mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2024-11-22 16:22:20 +00:00
6 lines
130 B
JavaScript
6 lines
130 B
JavaScript
$(document).ready(function () {
|
|
$('.ham-button').on('click', function () {
|
|
|
|
$('.ham').toggleClass('open');
|
|
});
|
|
}); |