Skip to content

Commit

Permalink
Cleanups.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoluteur committed Mar 24, 2024
1 parent ade1ce8 commit 53ab839
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Olivier Giulieri
Copyright (c) 2024 Olivier Giulieri

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ Note: The same result can also be achieved [using CSS transitions instead of D3]
My other D3 animations: [meet-the-fans](https://evoluteur.github.io/meet-the-fans) and [d3-dual-range-slider](https://evoluteur.github.io/d3-dual-range-slider).


(c) 2023 [Olivier Giulieri](https://evoluteur.github.io/)
(c) 2024 [Olivier Giulieri](https://evoluteur.github.io/)
17 changes: 8 additions & 9 deletions css/demo.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@

body{
font-family: 'Roboto',arial;
margin: 0;
padding: 20px 20px 20px 50px;
color: #0f0f0f;
background-color: white;
background-image: url("bg0.gif");
background-repeat: repeat-y;
body {
font-family: "Roboto", arial;
margin: 0;
padding: 20px 20px 20px 50px;
color: #0f0f0f;
background-color: white;
background-image: url("bg0.gif");
background-repeat: repeat-y;
}

h1 {
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h1>Gemstones Properties</h1>
<a href="javascript:redraw('cards')">Cards</a>
</div>
<div>
Order: <a href="javascript:sort('name')">Name</a> /
Order by: <a href="javascript:sort('name')">Name</a> /
<a href="javascript:sort('chakra')">Chakra</a>
</div>
</div>
Expand Down Expand Up @@ -90,7 +90,7 @@ <h1>Gemstones Properties</h1>
</p>

<p>
&#169; 2023 <a href="https://evoluteur.github.io/">Olivier Giulieri</a>.
&#169; 2024 <a href="https://evoluteur.github.io/">Olivier Giulieri</a>.
</p>
</body>
</html>
2 changes: 1 addition & 1 deletion js/d3-table-cards.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/evoluteur/d3-table-cards
// (c) 2023 Olivier Giulieri
// (c) 2024 Olivier Giulieri

const layoutInfo = {
table: {
Expand Down
2 changes: 1 addition & 1 deletion js/data.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// (c) 2023 Michael Gienger (from the book "Healing Crystals")
// (c) 2024 Michael Gienger (from the book "Healing Crystals")
// I'm allowed to use the following data by the author.
// This data is not public domain!

Expand Down

0 comments on commit 53ab839

Please sign in to comment.