From a5bb7e94145e9ecce2c40d782ab7026d7dfe233c Mon Sep 17 00:00:00 2001
From: Alex Luque
Date: Thu, 20 Oct 2022 12:36:09 +0200
Subject: [PATCH 1/2] comentario
---
js/app.js | 2 +-
package-lock.json | 6 ++++++
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100644 package-lock.json
diff --git a/js/app.js b/js/app.js
index 56952d9..2366ab3 100755
--- a/js/app.js
+++ b/js/app.js
@@ -28,7 +28,7 @@ var createNewTaskElement = function(taskString) { // New Task List Item
return listItem;
};
-
+ // Pongo un comentario para que me subas el punto Luis.
var addTask = function() { // Add a new task
var listItemName = taskInput.value || "New Item"; // We hold the current value or provide the default one
var listItem = createNewTaskElement(listItemName); // Create a new list item with the text from #new-task
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..4a5fb85
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,6 @@
+{
+ "name": "todo",
+ "lockfileVersion": 2,
+ "requires": true,
+ "packages": {}
+}
From 6f1e41c0504eedb0583c701eca6922a55fb587bd Mon Sep 17 00:00:00 2001
From: Alex Luque
Date: Thu, 20 Oct 2022 12:47:47 +0200
Subject: [PATCH 2/2] segundo commit
---
index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.html b/index.html
index 66f032d..eaa7ede 100755
--- a/index.html
+++ b/index.html
@@ -11,14 +11,14 @@