mirror of
https://github.com/morris/vanilla-todo.git
synced 2025-08-20 21:02:10 +02:00
fix issues with custom list height calc
This commit is contained in:
@@ -33,7 +33,7 @@ export function TodoApp(el) {
|
||||
</div>
|
||||
<footer class="app-footer">
|
||||
<p>
|
||||
VANILLA TODO © 2020-2022 <a href="https://morrisbrodersen.de">Morris Brodersen</a>
|
||||
VANILLA TODO © 2020–2023 <a href="https://morrisbrodersen.de">Morris Brodersen</a>
|
||||
— A case study on viable techniques for vanilla web development.
|
||||
<a href="https://github.com/morris/vanilla-todo">About →</a>
|
||||
</p>
|
||||
@@ -113,7 +113,7 @@ export function TodoApp(el) {
|
||||
);
|
||||
|
||||
el.querySelectorAll('.app-collapsible').forEach((el) =>
|
||||
el.dispatchEvent(new CustomEvent('collapse', { detail: false })),
|
||||
el.dispatchEvent(new CustomEvent('collapse')),
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user