Read the statement by Michael Teeuw here.
MMM-soccer v2
-
i saw, that the focus for table was not found. thats correct. it is only highlighted in the current matchday…
-
@matze86 ok I’ll check that error.
-
@matze86 OK i pushed a fix.
Please do agit pull
and let me know if it works better now. -
-
@matze86 yeah another issue i have just now realized. Give me a bit of time.
-
@lavolp3 should be fixed now. Only one css line
Again, please do agit pull
-
@lavolp3
I fixed it by my ownI can send you the css of you want
Is ist possible to delete the last games of my team?
I only found a Solution to reduce it from 3 to 2 , by editing line 247 (changing the number in bracktes), but each other Number than 3 will only reduce it to 2 Games
-
@matze86 Change line 249 in MMM-soccer.js from
for (var i = index - 1; i < filteredMatches.length; i++) { nextMatches.push(filteredMatches[i]); }
to
for (var i = index; i < filteredMatches.length; i++) { nextMatches.push(filteredMatches[i]); }
(Remove the “- 1”)
-
i changed it to “+ 1”, because with with i = index it will still display the last game. Or when will the module update the game list? i think on the next matchday?
-
@matze86
Hm. The module has a range of future and recent games.
Then it searches for the index of the first game after the current date.
THen takes that value asindex
, soindex
should be the next game,index-1
the last andindex+1
the one after the next.Does your workaround actually work?
Then I’m thinking wrong.