修改 - 细节与关闭 DEBUG 模式

This commit is contained in:
suwings 2018-07-18 15:40:43 +08:00
parent 6d1eba8c9d
commit 63047f3f1a
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
//Websocket 层
(function () {
var DEBUG = true; //Websocket DEBUG
var DEBUG = false; //Websocket DEBUG
//from @BBleae
//10 秒自动发送一次心跳包,此时间不可改变

View File

@ -26,7 +26,7 @@
<p>[选填] 您可以从已有的服务器配置中,复制一份配置到这里,来避免重复的输入相同的数据。</p>
<div class="input-group input-group-sm">
<span class="input-group-addon">目标实例名字</span>
<input type="text" class="form-control" v-model="readServerName" placeholder="[无导入的配置]">
<input type="text" class="form-control" v-model="readServerName" placeholder="[在此输入目标服务端的名字即可复制它的配置项目]">
<span class="input-group-btn">
<button class="btn btn-default" v-on:click="readServerConfig(readServerName)"> 导入配置 </button>
</span>
@ -142,7 +142,7 @@
if (serverData == null || serverData['serverName'] == null) {
return;
}
that.name = serverData.serverName + "_cpoy";
that.name = serverData.serverName + "_copy";
that.Xmx = serverData.Xmx;
that.Xms = serverData.Xms;
that.Java = serverData.Java;