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
a6bb94a5
Commit
a6bb94a5
authored
Aug 20, 2021
by
Mike Greiling
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ab-sidebar' into 'master'
Fix tooltip on issue sidebar See merge request gitlab-org/gitlab!68614
parents
b9a1ede0
6b454c44
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
app/assets/javascripts/right_sidebar.js
app/assets/javascripts/right_sidebar.js
+4
-1
No files found.
app/assets/javascripts/right_sidebar.js
View file @
a6bb94a5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
import
$
from
'
jquery
'
;
import
$
from
'
jquery
'
;
import
Cookies
from
'
js-cookie
'
;
import
Cookies
from
'
js-cookie
'
;
import
{
hide
}
from
'
~/tooltips
'
;
import
{
hide
,
fixTitle
}
from
'
~/tooltips
'
;
import
createFlash
from
'
./flash
'
;
import
createFlash
from
'
./flash
'
;
import
axios
from
'
./lib/utils/axios_utils
'
;
import
axios
from
'
./lib/utils/axios_utils
'
;
import
{
sprintf
,
s__
,
__
}
from
'
./locale
'
;
import
{
sprintf
,
s__
,
__
}
from
'
./locale
'
;
...
@@ -75,6 +75,9 @@ Sidebar.prototype.sidebarToggleClicked = function (e, triggered) {
...
@@ -75,6 +75,9 @@ Sidebar.prototype.sidebarToggleClicked = function (e, triggered) {
}
}
$this
.
attr
(
'
data-original-title
'
,
tooltipLabel
);
$this
.
attr
(
'
data-original-title
'
,
tooltipLabel
);
$this
.
attr
(
'
title
'
,
tooltipLabel
);
fixTitle
(
$this
);
hide
(
$this
);
if
(
!
triggered
)
{
if
(
!
triggered
)
{
Cookies
.
set
(
'
collapsed_gutter
'
,
$
(
'
.right-sidebar
'
).
hasClass
(
'
right-sidebar-collapsed
'
));
Cookies
.
set
(
'
collapsed_gutter
'
,
$
(
'
.right-sidebar
'
).
hasClass
(
'
right-sidebar-collapsed
'
));
...
...
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