From ffdf3456f738b0fc9e998c297fe33a4fcebe5c18 Mon Sep 17 00:00:00 2001 From: Sara Tahir Date: Tue, 29 Jul 2025 16:42:54 +0100 Subject: [PATCH 1/8] Updated Elements in HTML for better understanding. --- debugging/book-library/index.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/debugging/book-library/index.html b/debugging/book-library/index.html index 23acfa71..8d18db0d 100644 --- a/debugging/book-library/index.html +++ b/debugging/book-library/index.html @@ -1,7 +1,7 @@ - + "Sara's-Library"
-

Library

-

Add books to your virtual library

+

Sara's Library

+

Lets add my Favorite books to the virtual library

+ +
+
+ + - + + -
-
- - - - - - - - + + + +
+ +
+ +
+
- - - - - - - - - - - - - - - - - -
TitleAuthorNumber of PagesRead
+ + + + + + + + + + + +
TitleAuthorNumber of PagesRead
- - + + - From 577cbfdd315139b81fb2067d328bcc00d76ccd9a Mon Sep 17 00:00:00 2001 From: Sara Tahir Date: Tue, 29 Jul 2025 22:35:55 +0100 Subject: [PATCH 7/8] Adding Missing Description --- debugging/book-library/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugging/book-library/index.html b/debugging/book-library/index.html index 8e3bba24..d05c30b4 100644 --- a/debugging/book-library/index.html +++ b/debugging/book-library/index.html @@ -53,7 +53,7 @@

Sara's Library

Author Number of Pages Read - + Delete From d0ab1482bf4cdc1760ebd413706c7fc03f9e0c98 Mon Sep 17 00:00:00 2001 From: Sara Tahir Date: Tue, 29 Jul 2025 22:46:56 +0100 Subject: [PATCH 8/8] Removed render from Function PopulateStorage as it has already been called once on load --- debugging/book-library/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugging/book-library/script.js b/debugging/book-library/script.js index a9941b9a..3f9c1ba6 100644 --- a/debugging/book-library/script.js +++ b/debugging/book-library/script.js @@ -17,7 +17,7 @@ function populateStorage() { ); myLibrary.push(book1); myLibrary.push(book2); - render(); + } }