Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Web Engineering WS19-20
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Sebastian Rosauer
Web Engineering WS19-20
Merge requests
!4
Deploy Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Deploy Develop
develop
into
master
Overview
0
Commits
7
Pipelines
0
Changes
26
Merged
Sebastian Rosauer
requested to merge
develop
into
master
4 years ago
Overview
0
Commits
7
Pipelines
0
Changes
26
Expand
Update master to the newest stable Version
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
5d56d973
7 commits,
4 years ago
26 files
+
130
−
99
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
26
Search (e.g. *.vue) (Ctrl+P)
public/we_tasks/task05/5_1.html
+
2
−
2
Options
@@ -6,7 +6,7 @@
<h1>
Einkaufsliste!
</h1>
<label>
Artikelname:
</label>
<input
id=
"input"
type=
"text"
></input>
<button
id=
"add"
>
Hinzuf
ü
gen!
</button>
<button
id=
"add"
>
Hinzuf
ü
gen!
</button>
<ul
id=
"shoppingList"
></ul>
</body>
@@ -17,7 +17,7 @@
add
.
onclick
=
function
(){
const
listItem
=
document
.
createElement
(
'
li
'
);
listItem
.
innerHTML
=
`
${
input
.
value
}
<button>L
ö
schen!</button>`
;
listItem
.
innerHTML
=
`
${
input
.
value
}
<button>L
ö
schen!</button>`
;
const
deleteButton
=
listItem
.
querySelector
(
'
button
'
);
deleteButton
.
onclick
=
function
(){
shoppingList
.
removeChild
(
listItem
);
Loading