v0.5.0: Zendriver Daemon optimization, Python 3.14 support, and UI/UX improvements

This commit is contained in:
2026-01-03 15:33:13 +09:00
parent 1e10c43fef
commit 8ce34951d5
11 changed files with 829 additions and 67 deletions

View File

@@ -341,6 +341,14 @@
$("#loader").css("display", 'none');
});
// Enter 키로 검색 트리거
$("#code").on('keypress', function (e) {
if (e.which === 13) { // Enter key
e.preventDefault();
$("#analysis_btn").click();
}
});
$("#analysis_btn").unbind("click").bind('click', function (e) {
e.preventDefault();
e.stopPropagation()

View File

@@ -236,6 +236,14 @@
});
// Enter 키로 검색 트리거
$("#code").on('keypress', function (e) {
if (e.which === 13) { // Enter key
e.preventDefault();
$("#analysis_btn").click();
}
});
$("#analysis_btn").unbind("click").bind('click', function (e) {
e.preventDefault();
e.stopPropagation()

View File

@@ -277,6 +277,13 @@
});
// Enter 키로 검색 트리거
$("#code").on('keypress', function (e) {
if (e.which === 13) { // Enter key
e.preventDefault();
$("#analysis_btn").click();
}
});
$("#analysis_btn").unbind("click").bind('click', function (e) {
e.preventDefault();