shbatm / MMM-Carousel

Displays a single magic mirror module at a time, rotating through the list of configured modules in a carousel-like fashion.
MIT License
42 stars 14 forks source link

Fixed restartTimer function #21

Closed Xanthus1 closed 5 years ago

Xanthus1 commented 5 years ago

Simple bug fix- manual transitions were not resetting the timer. The 'restartTimer' function's condition was referencing "this.config.transitionTimer" which doesn't exist, I corrected it to "this.transitionTimer".

shbatm commented 5 years ago

Good catch on the mistake. The conditional is actually supposed to be this.config.transitionInterval > 0 (evaluate if we're using timers at all). If you can make the change and update this I'll accept the PR.

Xanthus1 commented 5 years ago

Sure thing! Just made the change.