From 28617d92d90d7feeb26da92aa7c9ba75a6736786 Mon Sep 17 00:00:00 2001 From: naibo Date: Sat, 25 Mar 2023 01:04:21 +0800 Subject: [PATCH] Ubuntu Bug fix --- ElectronJS/src/taskGrid/FlowChart.html | 2 +- ElectronJS/src/taskGrid/FlowChart_CN.html | 2 +- ElectronJS/src/taskGrid/logic.js | 4 ++-- ElectronJS/src/taskGrid/logic_CN.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ElectronJS/src/taskGrid/FlowChart.html b/ElectronJS/src/taskGrid/FlowChart.html index 1c52690..b4e528e 100644 --- a/ElectronJS/src/taskGrid/FlowChart.html +++ b/ElectronJS/src/taskGrid/FlowChart.html @@ -34,7 +34,7 @@
Toolkit
- + diff --git a/ElectronJS/src/taskGrid/FlowChart_CN.html b/ElectronJS/src/taskGrid/FlowChart_CN.html index 1f924fd..f0e849e 100644 --- a/ElectronJS/src/taskGrid/FlowChart_CN.html +++ b/ElectronJS/src/taskGrid/FlowChart_CN.html @@ -34,7 +34,7 @@
工具箱
- + diff --git a/ElectronJS/src/taskGrid/logic.js b/ElectronJS/src/taskGrid/logic.js index f0efbb3..239ec68 100644 --- a/ElectronJS/src/taskGrid/logic.js +++ b/ElectronJS/src/taskGrid/logic.js @@ -205,10 +205,10 @@ var backEndAddressServiceWrapper = getUrlParam("backEndAddressServiceWrapper"); function saveService(type) { var serviceId = $("#serviceId").val(); - var text = "Confirm to save this task?"; + var text = "Confirm to save this task (If cannot click, can press Enter)? "; if (type == 1) { //任务另存为 serviceId = -1; - text = "Confirm to save as another task in the system?"; + text = "Confirm to save as another task in the system (If cannot click, can press Enter)?"; } if (confirm(text)) { let serviceName = $("#serviceName").val(); diff --git a/ElectronJS/src/taskGrid/logic_CN.js b/ElectronJS/src/taskGrid/logic_CN.js index 06aad85..205e5ce 100644 --- a/ElectronJS/src/taskGrid/logic_CN.js +++ b/ElectronJS/src/taskGrid/logic_CN.js @@ -205,10 +205,10 @@ var backEndAddressServiceWrapper = getUrlParam("backEndAddressServiceWrapper"); function saveService(type) { var serviceId = $("#serviceId").val(); - var text = "确认要保存任务吗?"; + var text = "确认要保存任务吗(不能用鼠标点击时,请按键盘回车键)?"; if (type == 1) { //任务另存为 serviceId = -1; - text = "确认要另存为任务吗?"; + text = "确认要另存为任务吗(不能用鼠标点击时,请按键盘回车键)?"; } if (confirm(text)) { let serviceName = $("#serviceName").val();