|
@@ -7,7 +7,7 @@ let isGenerating = false;
|
|
function fetchJSONSync(url) {
|
|
function fetchJSONSync(url) {
|
|
try {
|
|
try {
|
|
const xhr = new XMLHttpRequest();
|
|
const xhr = new XMLHttpRequest();
|
|
- xhr.open('GET', url, false); // 第三个参数设为false,表示同步请求
|
|
|
|
|
|
+ xhr.open('GET', url, false); // sync request
|
|
xhr.send();
|
|
xhr.send();
|
|
|
|
|
|
if (xhr.status !== 200) {
|
|
if (xhr.status !== 200) {
|
|
@@ -26,12 +26,12 @@ globalConfig = fetchJSONSync('./config.json');
|
|
|
|
|
|
function setGenerating() {
|
|
function setGenerating() {
|
|
isGenerating = true;
|
|
isGenerating = true;
|
|
- document.getElementById('send-button').innerHTML = '生成中...';
|
|
|
|
|
|
+ document.getElementById('send-button').innerHTML = 'Generating...';
|
|
}
|
|
}
|
|
|
|
|
|
function unsetGenerating() {
|
|
function unsetGenerating() {
|
|
isGenerating = false;
|
|
isGenerating = false;
|
|
- document.getElementById('send-button').innerHTML = '发送';
|
|
|
|
|
|
+ document.getElementById('send-button').innerHTML = 'Send';
|
|
}
|
|
}
|
|
|
|
|
|
let stopGenerating = false;
|
|
let stopGenerating = false;
|