Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
726223ee8d8a7dde927fc833ea456383ed0d153b...61e6f5d3c6c6a560ef52eac10ec5795af2b35bdb
Commits (1)
Change sorting_description from const to var
· 61e6f5d3
Rob Swindell
authored
Apr 03, 2022
Since this script can be reloaded in the same scope. Fixes issue
#387
.
61e6f5d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
exec/webfileindex.ssjs
exec/webfileindex.ssjs
+1
-1
No files found.
exec/webfileindex.ssjs
View file @
61e6f5d3
...
...
@@ -21,7 +21,7 @@ function root_link()
return
"
root
"
.
link
(
file_area
.
web_vpath_prefix
);
}
const
sorting_description
=
{
var
sorting_description
=
{
"
NAME_AI
"
:
"
Name ascending
"
,
"
NAME_DI
"
:
"
Name descending
"
,
"
NATURAL
"
:
"
Date ascending
"
,
...
...