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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
50e2bd22
Commit
50e2bd22
authored
Sep 28, 2016
by
Mike Greiling
Committed by
Fatih Acet
Sep 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure split-view diff discussions are made visible by "toggle comments" button
parent
666762f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG
CHANGELOG
+1
-0
app/assets/javascripts/application.js
app/assets/javascripts/application.js
+1
-1
No files found.
CHANGELOG
View file @
50e2bd22
...
...
@@ -13,6 +13,7 @@ v 8.13.0 (unreleased)
- Revoke button in Applications Settings underlines on hover.
- Update ruby-prof to 0.16.2. !6026 (Elan Ruusamäe)
- Add organization field to user profile
- Fix resolved discussion display in side-by-side diff view !6575
- Optimize GitHub importing for speed and memory
- API: expose pipeline data in builds API (!6502, Guilherme Salazar)
...
...
app/assets/javascripts/application.js
View file @
50e2bd22
...
...
@@ -247,7 +247,7 @@
$this
.
toggleClass
(
'
active
'
);
var
notesHolders
=
$this
.
closest
(
'
.diff-file
'
).
find
(
'
.notes_holder
'
);
if
(
$this
.
hasClass
(
'
active
'
))
{
notesHolders
.
show
();
notesHolders
.
show
()
.
find
(
'
.hide
'
).
show
()
;
}
else
{
notesHolders
.
hide
();
}
...
...
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