Skip to content
Snippets Groups Projects
Commit d2b5c3f6 authored by Robert Speicher's avatar Robert Speicher
Browse files

Trigger sticky_kit:recalc when diffs are pre-loaded

parent 4e7f23fe
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -50,8 +50,10 @@ class @MergeRequestTabs
@_location = location
 
switch @opts.action
when 'commits' then @commitsLoaded = true
when 'diffs' then @diffsLoaded = true
when 'commits'
@commitsLoaded = true
when 'diffs'
@diffsLoaded = true
 
@bindEvents()
@activateTab(@opts.action)
Loading
Loading
@@ -67,6 +69,7 @@ class @MergeRequestTabs
@loadCommits($target.attr('href'))
else if action == 'diffs'
@loadDiff($target.attr('href'))
@stickyDiffHeaders()
 
@setCurrentAction(action)
 
Loading
Loading
@@ -134,12 +137,15 @@ class @MergeRequestTabs
url: "#{source}.json"
success: (data) =>
document.getElementById('diffs').innerHTML = data.html
$('.diff-header').trigger('sticky_kit:recalc')
@stickyDiffHeaders()
@diffsLoaded = true
 
toggleLoading: ->
$('.mr-loading-status .loading').toggle()
 
stickyDiffHeaders: ->
$('.diff-header').trigger('sticky_kit:recalc')
_get: (options) ->
defaults = {
beforeSend: @toggleLoading
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