Peter Butcher

Results 24 comments of Peter Butcher

This is on my to do list. I've needed that feature myself but got lazy and just decided to hide the day counter. I'll mark this as an enhancement and...

This is now being worked on in #24.

Thanks for cleaning this up. I have a question regarding the `Occurence UTS to count down to`, this naming is confusing me a bit. Was your intention to be able...

That was it, thanks. There's definitely value in being able to trigger events during the countdown so I'll put some thought into how to name that feature and how best...

The problem there is that the element does not resize to reflect the number of visible rotors. The containing element should be resized based on the number of visible rotors....

Before I merge #22, I intend to add support for variable widths of the FlipDown container based on the number of visible rotors and extra days. Thanks!

This was being discussed in #24 but I haven't got around to completely integrating it in a sensible way yet.

@mcapkovic This is caused by a problem in microbundle when exporting modules alongside cjs. In my case, when exporting a modern and cjs module. It was reported in the microbundle...

@mcapkovic For now I'm just generating modern versions of my package: ```json "scripts": { "build": "microbundle-crl --no-compress --format modern", "start": "microbundle-crl watch --no-compress --format modern", } ```

For anyone looking for this in future, here's how you can do it. ```js // Clear FlipDown's internal interval clearInterval(flipdown.countdown); // Remove all generated elements inside the FlipDown container document.getElementById("flipdown").replaceChildren();...