mirror of https://gitee.com/zhang_1334717033/kiftd
update to v1.0.28-release
parent
5a55a2937d
commit
9c3ab72d57
|
|
@ -82,6 +82,8 @@ _本次更新为维护性的更新,修复一些已经发现的问题并优化
|
|||
+ 修正了部分启动命令提示信息描述不正确的问题。
|
||||
+ 优化了系统运行时的终端输出内容,避免输出信息过于杂乱影响命令操作。
|
||||
+ 完善了命令模式下“文件管理”功能,进一步优化其命令检验和提示机制,方便使用者进行日常操作。
|
||||
+ 进一步完善了文件系统数据效验机制,更好地保证其“整洁”、稳定和健壮。
|
||||
+ 其他一些细节优化。
|
||||
|
||||
> 需要查看更多版本历史信息?请访问: https://kohgylw.gitee.io/News.html
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -81,8 +81,10 @@ $(function() {
|
|||
});
|
||||
// 关闭登陆模态框自动清空输入数据
|
||||
$('#loginModal').on('hidden.bs.modal', function(e) {
|
||||
$("#accountid").val('');
|
||||
$("#accountpwd").val('');
|
||||
if($("#dologinButton").attr('disabled') !== 'disabled'){
|
||||
$("#accountid").val('');
|
||||
$("#accountpwd").val('');
|
||||
}
|
||||
$("#accountidbox").removeClass("has-error");
|
||||
$("#accountpwdbox").removeClass("has-error");
|
||||
$("#alertbox").removeClass("alert");
|
||||
|
|
@ -596,7 +598,6 @@ function dologin() {
|
|||
|
||||
// 发送加密文本
|
||||
function sendLoginInfo(encrypted) {
|
||||
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
dataType : "text",
|
||||
|
|
@ -1139,8 +1140,7 @@ function createfolder() {
|
|||
showFolderView(locationpath);
|
||||
break;
|
||||
default:
|
||||
$('#newFolderModal').modal('hide');
|
||||
showFolderView(locationpath);
|
||||
showFolderAlert("提示:出现意外错误,可能未能创建文件夹。");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue