Files
Atay-Makhzan/web_src/js/features/repo-commit.js
T

7 lines
174 B
JavaScript
Raw Normal View History

2021-10-17 01:28:04 +08:00
export function initRepoCommitButton() {
$('.commit-button').on('click', function (e) {
e.preventDefault();
$(this).parent().find('.commit-body').toggle();
});
}