Skip to content

Commit

Permalink
work on webtoon source
Browse files Browse the repository at this point in the history
  • Loading branch information
Yucked committed Jan 27, 2024
1 parent 2ff99b7 commit fed1d5a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Sources/WebtoonSource.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
namespace Grimoire.Sources;

public class WebtoonSource {

}
6 changes: 6 additions & 0 deletions src/wwwroot/js/site.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ function displayData(dictionary) {
console.log(dictionary);

for (let key in dictionary) {
console.log(key)

let element = document.getElementById(key)
element.classList.remove("visually-hidden")

let value = dictionary[key]
let div = document.createElement("div")
div.classList.add("container")
div.classList.add("overflow-x-auto")

}
}

0 comments on commit fed1d5a

Please sign in to comment.