Skip to content
Snippets Groups Projects
Commit 9a26120c authored by Valery Sizov's avatar Valery Sizov Committed by Robert Speicher
Browse files

Fix anchors to comments in diffs

parent b4963a75
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3,6 +3,7 @@ Please view this file on the master branch, on stable branches it's out of date.
v 8.0.4
- Fix Message-ID header to be RFC 2111-compliant to prevent e-mails being dropped (Stan Hu)
- Fix referrals for :back and relative URL installs
- Fix anchors to comments in diffs
 
v 8.0.3
- Fix URL shown in Slack notifications
Loading
Loading
Loading
Loading
@@ -66,6 +66,11 @@ class @MergeRequestTabs
 
@setCurrentAction(action)
 
scrollToElement: (container) ->
if window.location.hash
top = $(container + " " + window.location.hash).offset().top
$('body').scrollTo(top);
# Activate a tab based on the current action
activateTab: (action) ->
action = 'notes' if action == 'show'
Loading
Loading
@@ -122,6 +127,7 @@ class @MergeRequestTabs
document.getElementById('commits').innerHTML = data.html
$('.js-timeago').timeago()
@commitsLoaded = true
@scrollToElement(".commits")
 
loadDiff: (source) ->
return if @diffsLoaded
Loading
Loading
@@ -131,6 +137,7 @@ class @MergeRequestTabs
success: (data) =>
document.getElementById('diffs').innerHTML = data.html
@diffsLoaded = true
@scrollToElement(".diffs")
 
toggleLoading: ->
$('.mr-loading-status .loading').toggle()
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment