mirror of
https://github.com/edward-shen/MMM-pages.git
synced 2024-11-22 10:14:30 -08:00
Fixed typo
This commit is contained in:
parent
00b7d6d7b9
commit
bd0fb6741f
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ Module.register('MMM-pages', {
|
||||||
break;
|
break;
|
||||||
case 'PAGE_DECREMENT':
|
case 'PAGE_DECREMENT':
|
||||||
Log.log(`${this.name} recieved a notification to decrement pages!`);
|
Log.log(`${this.name} recieved a notification to decrement pages!`);
|
||||||
this.curPage = this.mode(this.curPage - 1, this.config.modules.length);
|
this.curPage = this.mod(this.curPage - 1, this.config.modules.length);
|
||||||
this.updatePages(true);
|
this.updatePages(true);
|
||||||
break;
|
break;
|
||||||
case 'DOM_OBJECTS_CREATED':
|
case 'DOM_OBJECTS_CREATED':
|
||||||
|
|
Loading…
Reference in a new issue