Hi Guys,
while creating the configuration for my magicmirror, i experienced that showing emails isn’t working, if fade is set to true… So i debugged this nearly two hours without any knowledge of javascript :D
The problem is, that the variable “count” isnt working as desired. Its not increasing. So i created a patch for your:
58d57
< var e = 0;
125,127c124,126
< var steps = that.payload.slice(0, that.config.numberOfEmails).length - startingPoint;
< if (e >= startingPoint) {
< var currentStep = e - startingPoint;
---
> var steps = that.payload.slice(0, that.config.numberOfEmails).length - startingPoint;
> if (count >= startingPoint) {
> var currentStep = count - startingPoint;
130d128
< e++;
Hopefuly this will fix your problems with the fade option.
Regards
Alex