Skip to content
Snippets Groups Projects

Gitlab ci jtgd10

Open Jan Tegeder requested to merge gitlab-ci-jtgd10 into master
Viewing commit ed9b8bc4
Show latest version
1 file
+ 5
5
Compare changes
  • Side-by-side
  • Inline
+ 5
5
@@ -3,10 +3,10 @@
*/
const todos = [];
class Todo {
constructor(title, description) {
this.title = title;
this.description = description;
}
constructor(title, description) {
this.title = title;
this.description = description;
}
}
function addTodo(todo) {
todos.push(todo);
@@ -31,4 +31,4 @@ function submitTodo() {
addTodoView(todo);
title.value = '';
description.value = '';
}
\ No newline at end of file
}