v0.5.0: Zendriver Daemon optimization, Python 3.14 support, and UI/UX improvements
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user