Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GCM-KY
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
2024 Competition
GCM-KY
Merge requests
!14
Home page
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Home page
Home-Page
into
main
Overview
0
Commits
6
Pipelines
2
Changes
4
Merged
Vishwaa Kannan
requested to merge
Home-Page
into
main
6 months ago
Overview
0
Commits
6
Pipelines
2
Changes
4
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
45a87cc8
6 commits,
6 months ago
4 files
+
167
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
static/app.js
+
10
−
2
Options
// overview.js
// Smooth scrolling for overview links
document
.
addEventListener
(
"
DOMContentLoaded
"
,
function
()
{
document
.
querySelectorAll
(
'
#overview a
'
).
forEach
(
function
(
anchor
)
{
@@ -11,3 +9,13 @@ document.addEventListener("DOMContentLoaded", function() {
});
});
});
// Add smooth scrolling
document
.
querySelectorAll
(
'
a[href^="#"]
'
).
forEach
(
anchor
=>
{
anchor
.
addEventListener
(
'
click
'
,
function
(
e
)
{
e
.
preventDefault
();
document
.
querySelector
(
this
.
getAttribute
(
'
href
'
)).
scrollIntoView
({
behavior
:
'
smooth
'
});
});
});
Loading