Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
antSword
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HuangJunbo
antSword
Commits
94f56fcf
Commit
94f56fcf
authored
Apr 17, 2019
by
Medicean
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fix: FileManager) fix #150
parent
39bb4feb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG.md
CHANGELOG.md
+5
-0
app.entry.js
source/app.entry.js
+1
-0
files.js
source/modules/filemanager/files.js
+1
-1
No files found.
CHANGELOG.md
View file @
94f56fcf
# 更新日志
> 有空会补补BUG、添添新功能。
> 同时也欢迎大家的参与!感谢各位朋友的支持! .TAT.
## `v(2.0.7.2)`
*
Fix #150 文件路径输入框未过滤问题
*
修复目录树双击时引起console下报错问题
*
修正 aslistcmd 二次转义问题
## `v(2.0.7.1)`
...
...
source/app.entry.js
View file @
94f56fcf
...
...
@@ -28,6 +28,7 @@ const antSword = window.antSword = {
noxss
:
(
html
=
''
,
wrap
=
true
)
=>
{
let
_html
=
String
(
html
)
.
replace
(
/&/g
,
"&"
)
.
replace
(
/'/g
,
"'"
)
.
replace
(
/>/g
,
">"
)
.
replace
(
/</g
,
"<"
)
.
replace
(
/"/g
,
"""
);
...
...
source/modules/filemanager/files.js
View file @
94f56fcf
...
...
@@ -97,7 +97,7 @@ class Files {
options
:
bookmark_opts
},
{
type
:
'separator'
},
{
id
:
'path'
,
width
:
300
,
type
:
'buttonInput'
,
value
:
manager
.
path
||
'loading..'
},
{
id
:
'path'
,
width
:
300
,
type
:
'buttonInput'
,
value
:
antSword
.
noxss
(
manager
.
path
)
||
'loading..'
},
{
id
:
'read_path'
,
type
:
'button'
,
icon
:
'arrow-right'
,
text
:
LANG
[
'toolbar'
][
'read'
]
},
{
type
:
'separator'
}
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment