From 9a413cbbea20c6ffb7dccde2096ee83ec8b8fc0e Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Sun, 12 Jan 2025 23:10:21 +0300 Subject: [PATCH 1/2] =?UTF-8?q?fix(web):=20=D0=98=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=BE=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80?= =?UTF-8?q?=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1?= =?UTF-8?q?=D0=BE=D0=BA=20=D0=BD=D0=B0=20=D0=BC=D0=B0=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D1=8C=D0=BA=D0=B8=D1=85=20=D1=8D=D0=BA=D1=80=D0=B0=D0=BD=D0=B0?= =?UTF-8?q?=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/interface/view/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interface/view/index.html b/src/interface/view/index.html index 7bbad8b..e9983ee 100644 --- a/src/interface/view/index.html +++ b/src/interface/view/index.html @@ -230,6 +230,7 @@ } #warnings, #errors { + width:25em; font-size: 1.5em; padding:30px 45px; } From 9c382c8b54758fedb5c436cf056c441213be8c47 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Sun, 12 Jan 2025 23:12:55 +0300 Subject: [PATCH 2/2] =?UTF-8?q?fix(web):=20=D0=9E=D1=82=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BA=D0=B0=20=D0=B7=D0=B0=D0=BF=D1=80=D0=BE=D1=81=D0=B0?= =?UTF-8?q?=20=D0=BF=D0=BE=20Ctrl+Enter=20=D0=B1=D0=B5=D0=B7=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B8=D0=B2=D1=8F=D0=B7=D0=BA=D0=B8=20=D0=BA=20=D1=8D?= =?UTF-8?q?=D0=BB=D0=B5=D0=BC=D0=B5=D0=BD=D1=82=D1=83=20=D0=B2=D0=B2=D0=BE?= =?UTF-8?q?=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/interface/view/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/interface/view/index.html b/src/interface/view/index.html index e9983ee..ad7a840 100644 --- a/src/interface/view/index.html +++ b/src/interface/view/index.html @@ -330,7 +330,6 @@ function enableRequests(){ setRequestsPermission(true); - convertInput.focus(); } function setRequestsPermission(isEnable){ @@ -352,7 +351,7 @@ copyToClipboard(outputText); }); - convertInput.addEventListener("keyup", function (e){ + document.addEventListener("keyup", function (e){ if (e.keyCode == 13 && e.ctrlKey){ convertButton.click(); }