Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-02 12:10:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-02 12:10:09 +0300
commit1930898566965dbc1bd779089ec9e58e17674268 (patch)
treea1e4384e4e8927431b637daa885dc8793cbb0035 /app/assets/javascripts/merge_request_tabs.js
parent2691cff8296517651e4bcd8adac09640f8cc28f5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/merge_request_tabs.js')
-rw-r--r--app/assets/javascripts/merge_request_tabs.js29
1 files changed, 17 insertions, 12 deletions
diff --git a/app/assets/javascripts/merge_request_tabs.js b/app/assets/javascripts/merge_request_tabs.js
index 1d1c0a23fab..14e5e96d7b0 100644
--- a/app/assets/javascripts/merge_request_tabs.js
+++ b/app/assets/javascripts/merge_request_tabs.js
@@ -82,9 +82,9 @@ export default class MergeRequestTabs {
this.mergeRequestTabPanes && this.mergeRequestTabPanes.querySelectorAll
? this.mergeRequestTabPanes.querySelectorAll('.tab-pane')
: null;
- const navbar = document.querySelector('.navbar-gitlab');
- const peek = document.getElementById('js-peek');
- const paddingTop = 16;
+ this.navbar = document.querySelector('.navbar-gitlab');
+ this.peek = document.getElementById('js-peek');
+ this.paddingTop = 16;
this.commitsTab = document.querySelector('.tab-content .commits.tab-pane');
@@ -99,15 +99,6 @@ export default class MergeRequestTabs {
this.setCurrentAction = this.setCurrentAction.bind(this);
this.tabShown = this.tabShown.bind(this);
this.clickTab = this.clickTab.bind(this);
- this.stickyTop = navbar ? navbar.offsetHeight - paddingTop : 0;
-
- if (peek) {
- this.stickyTop += peek.offsetHeight;
- }
-
- if (this.mergeRequestTabs) {
- this.stickyTop += this.mergeRequestTabs.offsetHeight;
- }
if (stubLocation) {
location = stubLocation;
@@ -520,4 +511,18 @@ export default class MergeRequestTabs {
}
}, 0);
}
+
+ get stickyTop() {
+ let stickyTop = this.navbar ? this.navbar.offsetHeight : 0;
+
+ if (this.peek) {
+ stickyTop += this.peek.offsetHeight;
+ }
+
+ if (this.mergeRequestTabs) {
+ stickyTop += this.mergeRequestTabs.offsetHeight;
+ }
+
+ return stickyTop;
+ }
}