BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
3283386a
Unverified
Commit
3283386a
authored
Apr 13, 2018
by
Luke Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use jquery object in togglePopover
parent
8d43fe4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
popover.js
app/assets/javascripts/shared/popover.js
+4
-3
No files found.
app/assets/javascripts/shared/popover.js
View file @
3283386a
...
...
@@ -2,12 +2,13 @@ import $ from 'jquery';
import
_
from
'underscore'
;
export
function
togglePopover
(
show
)
{
const
isAlreadyShown
=
this
.
hasClass
(
'js-popover-show'
);
const
$popover
=
$
(
this
);
const
isAlreadyShown
=
$popover
.
hasClass
(
'js-popover-show'
);
if
((
show
&&
isAlreadyShown
)
||
(
!
show
&&
!
isAlreadyShown
))
{
return
false
;
}
this
.
popover
(
show
?
'show'
:
'hide'
);
this
.
toggleClass
(
'disable-animation js-popover-show'
,
show
);
$popover
.
popover
(
show
?
'show'
:
'hide'
);
$popover
.
toggleClass
(
'disable-animation js-popover-show'
,
show
);
return
true
;
}
...
...
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