mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2024-11-15 21:02:19 +00:00
5 lines
129 B
JavaScript
5 lines
129 B
JavaScript
$(document).ready(function () {
|
|
$('.ham-button').on('click', function () {
|
|
$('.ham').toggleClass('open');
|
|
});
|
|
}); |