Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Manual-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
2023 Competition
Manual-KY
Merge requests
!34
Adding pop up
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding pop up
adding-pop-up
into
main
Overview
0
Commits
3
Pipelines
0
Changes
4
Merged
Vishwaa Kannan
requested to merge
adding-pop-up
into
main
1 year ago
Overview
0
Commits
3
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a4136023
3 commits,
1 year ago
4 files
+
62
−
3
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
+
15
−
1
Options
@@ -30,4 +30,18 @@ buttons.forEach(button => {
slides
.
children
[
newIndex
].
dataset
.
active
=
true
delete
activeSlide
.
dataset
.
active
})
})
\ No newline at end of file
})
document
.
addEventListener
(
"
DOMContentLoaded
"
,
function
()
{
showPopup
();
});
function
showPopup
()
{
document
.
getElementById
(
"
popup-container
"
).
style
.
display
=
"
block
"
;
document
.
body
.
style
.
overflow
=
"
hidden
"
;
// Disable scrolling
}
function
closePopup
()
{
document
.
getElementById
(
"
popup-container
"
).
style
.
display
=
"
none
"
;
document
.
body
.
style
.
overflow
=
"
auto
"
;
// Enable scrolling
}
Loading