Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
iCityDigitalTwinFramework
applications
Commits
537f64ef
Commit
537f64ef
authored
Apr 20, 2021
by
Athanasios
Browse files
Update settings.js
parent
6c3c79bc
Pipeline
#6867
passed with stages
in 18 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
public/settings.js
View file @
537f64ef
/*
███████╗██╗███╗ ██╗ ██████╗ ███████╗██████╗ ██╗ ██╗███████╗ ██████╗
██╔════╝██║████╗ ██║██╔════╝ ██╔════╝██╔══██╗ ██║ ██║██╔════╝██╔════╝
█████╗ ██║██╔██╗ ██║██║ ███╗█████╗ ██████╔╝ ██║ █╗ ██║█████╗ ██║ ███╗
██╔══╝ ██║██║╚██╗██║██║ ██║██╔══╝ ██╔══██╗ ██║███╗██║██╔══╝ ██║ ██║
██║ ██║██║ ╚████║╚██████╔╝███████╗██║ ██║ ╚███╔███╔╝███████╗╚██████╔╝
╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝ ╚══════╝ ╚═════╝
*/
const
BASE_URL
=
`
${
window
.
location
.
origin
}
/
${
window
.
location
.
pathname
.
split
(
'
/
'
).
filter
((
e
,
i
)
=>
{
return
i
>
0
&
i
<
4
}).
join
(
'
/
'
)}
`
;
const
ON
=
true
;
const
OFF
=
false
;
...
...
@@ -24,6 +33,15 @@ const DEFAULT = {
avatar
:
`
${
BASE_URL
}
/assets/images/avatar.png`
};
/*
███████╗███████╗████████╗████████╗██╗███╗ ██╗ ██████╗ ███████╗
██╔════╝██╔════╝╚══██╔══╝╚══██╔══╝██║████╗ ██║██╔════╝ ██╔════╝
███████╗█████╗ ██║ ██║ ██║██╔██╗ ██║██║ ███╗███████╗
╚════██║██╔══╝ ██║ ██║ ██║██║╚██╗██║██║ ██║╚════██║
███████║███████╗ ██║ ██║ ██║██║ ╚████║╚██████╔╝███████║
╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝
*/
let
settings
=
{
switches
:
[
...
...
@@ -35,10 +53,6 @@ let settings = {
name
:
"
projectName
"
,
state
:
ON
},
{
name
:
"
menu
"
,
state
:
OFF
},
{
name
:
"
participants
"
,
state
:
ON
...
...
@@ -53,21 +67,6 @@ let settings = {
projectName
:
"
M4_LAB Page Demo
"
,
menu
:
[
{
menuText
:
"
home
"
,
link
:
`
${
BASE_URL
}
/home/`
},
{
menuText
:
"
results
"
,
link
:
`
${
BASE_URL
}
/results/`
},
{
menuText
:
"
demo
"
,
link
:
"
http://example.com
"
}
],
participants
:
[
{
name
:
"
John Doe
"
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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