Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
PUBLIC
/
surfer-okd
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 51723cdf
authored
Nov 06, 2016
by
Johannes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make breadcrumbs clickable
Fixes #2
1 parent
5f43935e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
app/index.html
app/js/app.js
app/index.html
View file @
51723cd
...
...
@@ -116,9 +116,9 @@
</div>
<div
class=
"col-lg-12"
>
<ol
class=
"breadcrumb"
>
<li><
i
class=
"fa fa-home"
></i>
</li>
<li><
a
href=
"#/"
><i
class=
"fa fa-home"
></i>
</a>
</li>
<li
v-for=
"part in pathParts"
>
{{ part }}
<a
href=
"{{ part.link }}"
>
{{ part.name }}
</a>
</li>
</ol>
</div>
...
...
app/js/app.js
View file @
51723cd
...
...
@@ -77,9 +77,7 @@ function loadDirectory(filePath) {
filePath
=
filePath
?
sanitize
(
filePath
)
:
'/'
;
console
.
log
(
filePath
);
superagent
.
get
(
'/api/files/'
+
filePath
).
query
({
username
:
app
.
session
.
username
,
password
:
app
.
session
.
password
}).
end
(
function
(
error
,
result
)
{
superagent
.
get
(
'/api/files/'
+
encode
(
filePath
)).
query
({
username
:
app
.
session
.
username
,
password
:
app
.
session
.
password
}).
end
(
function
(
error
,
result
)
{
app
.
busy
=
false
;
if
(
result
&&
result
.
statusCode
===
401
)
return
logout
();
...
...
@@ -91,7 +89,12 @@ function loadDirectory(filePath) {
return
entry
;
});
app
.
path
=
filePath
;
app
.
pathParts
=
decode
(
filePath
).
split
(
'/'
).
filter
(
function
(
e
)
{
return
!!
e
;
});
app
.
pathParts
=
decode
(
filePath
).
split
(
'/'
).
filter
(
function
(
e
)
{
return
!!
e
;
}).
map
(
function
(
e
,
i
,
a
)
{
return
{
name
:
e
,
link
:
'#'
+
sanitize
(
'/'
+
a
.
slice
(
0
,
i
).
join
(
'/'
)
+
'/'
+
e
)
};
});
// update in case this was triggered from code
window
.
location
.
hash
=
app
.
path
;
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment