Now anchors to the top or bottom of the build trace with the correct offset

This commit is contained in:
Luke Bennett 2016-09-09 20:01:48 +01:00
parent b5d74bef8e
commit f162dde69f
No known key found for this signature in database
GPG Key ID: A738E9C68D3BF31A
2 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,7 @@
$(document).off('click', '.js-sidebar-build-toggle').on('click', '.js-sidebar-build-toggle', this.toggleSidebar);
$(window).off('resize.build').on('resize.build', this.hideSidebar);
$(document).off('click', '.stage-item').on('click', '.stage-item', this.updateDropdown);
$('.step-up-trace, .step-down-trace').off('click').on('click', this.stepTrace);
$('#js-build-scroll > a').off('click').on('click', this.stepTrace);
this.updateArtifactRemoveDate();
if ($('#build-trace').length) {
this.getInitialBuildTrace();
@ -167,11 +167,11 @@
};
Build.prototype.stepTrace = function(e) {
if ($(e.currentTarget).hasClass('step-up-trace')) {
$.scrollTo('-=50px');
} else {
$.scrollTo('+=50px');
}
e.preventDefault();
$currentTarget = $(e.currentTarget);
$.scrollTo($currentTarget.attr('href'), {
offset: -($('.navbar-gitlab').outerHeight() + $('.layout-nav').outerHeight())
});
};
return Build;

View File

@ -34,9 +34,9 @@
Build has been erased #{erased_by.html_safe} #{time_ago_with_tooltip(@build.erased_at)}
- else
#js-build-scroll.scroll-controls
%a.step-up-trace.btn
= link_to '#build-trace', class: 'btn' do
%i.fa.fa-angle-up
%a.step-down-trace.btn
= link_to '#down-build-trace', class: 'btn' do
%i.fa.fa-angle-down
%pre.build-trace#build-trace
%code.bash.js-build-output