Add offset adjust to fix line position
Added offset adjustment for diff file header and version menus container divs. This should make the linked line be visible.
This commit is contained in:
parent
62ac4b2485
commit
fc0d638062
2 changed files with 15 additions and 0 deletions
|
@ -94,6 +94,8 @@ export const handleLocationHash = () => {
|
|||
const fixedNav = document.querySelector('.navbar-gitlab');
|
||||
const performanceBar = document.querySelector('#js-peek');
|
||||
const topPadding = 8;
|
||||
const diffFileHeader = document.querySelector('.js-file-title');
|
||||
const versionMenusContainer = document.querySelector('.mr-version-menus-container');
|
||||
|
||||
let adjustment = 0;
|
||||
if (fixedNav) adjustment -= fixedNav.offsetHeight;
|
||||
|
@ -114,6 +116,14 @@ export const handleLocationHash = () => {
|
|||
adjustment -= performanceBar.offsetHeight;
|
||||
}
|
||||
|
||||
if (diffFileHeader) {
|
||||
adjustment -= diffFileHeader.offsetHeight;
|
||||
}
|
||||
|
||||
if (versionMenusContainer) {
|
||||
adjustment -= versionMenusContainer.offsetHeight;
|
||||
}
|
||||
|
||||
if (isInMRPage()) {
|
||||
adjustment -= topPadding;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Resolve Position is off when visiting files with anchors
|
||||
merge_request: 28913
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue