Skip to content

Commit b60c7b1

Browse files
committed
Version Bump
1 parent 178623b commit b60c7b1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "koshelf"
3-
version = "1.0.8"
3+
version = "1.0.9"
44
description = "Transform your KOReader library into a beautiful reading dashboard with statistics."
55
repository = "https://github.com/paviro/KOShelf"
66
license = "EUPL-1.2 license"

assets/section-toggle.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ class SectionToggle {
5050
if (defaultVisible) {
5151
// Show the section initially
5252
container.classList.remove('hidden');
53-
chevron.style.transform = 'rotate(180deg)';
53+
chevron.style.transform = 'rotate(0deg)';
5454
buttonText.textContent = 'Hide';
5555
} else {
5656
// Hide the section initially
5757
container.classList.add('hidden');
58-
chevron.style.transform = 'rotate(0deg)';
58+
chevron.style.transform = 'rotate(-90deg)';
5959
buttonText.textContent = 'Show';
6060
}
6161
}
@@ -80,7 +80,7 @@ class SectionToggle {
8080

8181
const { container, chevron, buttonText } = sectionData;
8282
container.classList.remove('hidden');
83-
chevron.style.transform = 'rotate(180deg)';
83+
chevron.style.transform = 'rotate(0deg)';
8484
buttonText.textContent = 'Hide';
8585
}
8686

@@ -90,7 +90,7 @@ class SectionToggle {
9090

9191
const { container, chevron, buttonText } = sectionData;
9292
container.classList.add('hidden');
93-
chevron.style.transform = 'rotate(0deg)';
93+
chevron.style.transform = 'rotate(-90deg)';
9494
buttonText.textContent = 'Show';
9595
}
9696

0 commit comments

Comments
 (0)