Improve sticky headers in diffs
* disable sticky headers in discussion * enable sticky header on mr page with you click changes tab
This commit is contained in:
parent
b9372c9997
commit
f2ea9d9f3f
2 changed files with 7 additions and 7 deletions
|
@ -37,8 +37,6 @@ class @Diff
|
|||
)
|
||||
)
|
||||
|
||||
$('.diff-header').stick_in_parent(recalc_every: 1, offset_top: $('.navbar').height())
|
||||
|
||||
lineNumbers: (line) ->
|
||||
return ([0, 0]) unless line.children().length
|
||||
lines = line.children().slice(0, 2)
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
.row.prepend-top-20.append-bottom-10
|
||||
.col-md-8
|
||||
= render 'projects/diffs/stats', diffs: diffs
|
||||
.col-md-4
|
||||
.btn-group.pull-right
|
||||
.prepend-top-20.append-bottom-20
|
||||
.pull-right
|
||||
.btn-group
|
||||
= inline_diff_btn
|
||||
= parallel_diff_btn
|
||||
= render 'projects/diffs/stats', diffs: diffs
|
||||
|
||||
- if show_diff_size_warning?(diffs)
|
||||
= render 'projects/diffs/warning', diffs: diffs
|
||||
|
@ -19,3 +18,6 @@
|
|||
Failed to collect changes
|
||||
%p
|
||||
Maybe diff is really big and operation failed with timeout. Try to get diff locally
|
||||
|
||||
:coffeescript
|
||||
$('.files .diff-header').stick_in_parent(recalc_every: 1, offset_top: $('.navbar').height())
|
||||
|
|
Loading…
Reference in a new issue