-
-
Notifications
You must be signed in to change notification settings - Fork 102
PAWEL BROILO I MODULE DATA FLOWS I BOOK LIBRARY #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 2 commits
818db8c
66d2611
ca17df7
fc43ad7
0a55d58
2efaeff
663d5f3
f2ca7b5
f395310
c54024d
2b015d1
13414c9
57d732c
aa16a36
82a7b01
4d22e09
008b991
85ca2fa
080663d
4048c4a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you don't add a proper <script> tag to include your code from |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code in this script has bug and is not working properly. You will need to fix them. Why don't you transfer your JS code from |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<script> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file should only contain JavaScript code. |
||
let myLibrary = []; | ||
|
||
window.addEventListener("load", function (e) { | ||
|
@@ -54,7 +55,7 @@ function render() { | |
let table = document.getElementById("display"); | ||
let rowsNumber = table.rows.length; | ||
//delete old table | ||
for (let n = rowsNumber - 1; n > 0; n-- { | ||
for (let n = rowsNumber - 1; n > 0; n--) { | ||
table.deleteRow(n); | ||
} | ||
//insert updated row and cells | ||
|
@@ -101,3 +102,4 @@ function render() { | |
}); | ||
} | ||
} | ||
</script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why yo deleted the <script> tag in this file that imports the code from
script.js
?You have a working implementation in
Book Library.html
. You can transfer the HTML code (only HTML code) from that file to this file.