Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextcloud
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libre.sh
docker
nextcloud
Commits
f3980c9d
Commit
f3980c9d
authored
3 years ago
by
Pierre Ozoux
Browse files
Options
Downloads
Patches
Plain Diff
Fixes js code.
parent
38c30acc
No related branches found
No related tags found
1 merge request
!13
Adds walkthrough.
Pipeline
#839
failed with stage
in 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
base/apps/walkthroughjs/js/intro.js
+8
-7
8 additions, 7 deletions
base/apps/walkthroughjs/js/intro.js
with
8 additions
and
7 deletions
base/apps/walkthroughjs/js/intro.js
+
8
−
7
View file @
f3980c9d
var
path
=
window
.
location
.
pathname
.
replace
(
/
\/
index
\.
php/
,
''
)
var
options
=
{};
var
run
=
false
;
var
oncomplete
=
function
()
{
}
var
oncomplete
=
function
()
{}
var
file
=
{
var
steps_
file
=
{
steps
:
[{
title
:
'
Welcome on files!
'
,
intro
:
'
Hello World! 👋
'
...
...
@@ -19,7 +18,7 @@ var file = {
}]
}
var
settings
=
{
var
steps_
settings
=
{
steps
:
[{
title
:
'
Welcome on settings/user!
'
,
intro
:
'
Hello World! 👋
'
...
...
@@ -37,14 +36,16 @@ var settings = {
switch
(
path
){
case
"
/apps/files/
"
:
options
=
file
;
options
=
steps_
file
;
run
=
true
;
oncomplete
=
function
()
{
setStatus
(
0
);
}
};
break
;
case
"
/settings/user
"
:
options
=
settings
;
options
=
steps_
settings
;
run
=
true
;
break
;
}
if
(
run
){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment