Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ffadd3cc
Commit
ffadd3cc
authored
Sep 03, 2017
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix JavaScript lint issues
parent
4e4345e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/assets/javascripts/geo_nodes.js
app/assets/javascripts/geo_nodes.js
+2
-2
No files found.
app/assets/javascripts/geo_nodes.js
View file @
ffadd3cc
...
...
@@ -24,7 +24,7 @@ class GeoNodeStatus {
this
.
$lastCursorEvent
=
$
(
'
.js-last-cursor-event
'
,
this
.
$status
);
this
.
$health
=
$
(
'
.js-health
'
,
this
.
$status
);
this
.
endpoint
=
this
.
$el
.
data
(
'
status-url
'
);
this
.
$advancedStatus
=
$
(
'
.js-advanced-geo-node-status-toggler
'
,
this
.
$status
)
this
.
$advancedStatus
=
$
(
'
.js-advanced-geo-node-status-toggler
'
,
this
.
$status
)
;
this
.
$advancedStatus
.
on
(
'
click
'
,
this
.
toggleShowAdvancedStatus
);
this
.
statusInterval
=
new
gl
.
SmartInterval
({
...
...
@@ -39,7 +39,7 @@ class GeoNodeStatus {
toggleShowAdvancedStatus
(
e
)
{
const
$element
=
$
(
e
.
currentTarget
);
const
$closestStatus
=
$element
.
siblings
(
'
.advanced-status
'
)
const
$closestStatus
=
$element
.
siblings
(
'
.advanced-status
'
)
;
$element
.
find
(
'
.fa
'
).
toggleClass
(
'
fa-angle-down
'
).
toggleClass
(
'
fa-angle-up
'
);
$closestStatus
.
toggleClass
(
'
hidden
'
);
...
...
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