소스 검색

Remove another unused state argument

tags/v0.1.3
Fen Dweller 5 년 전
부모
커밋
b30d437274
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      game.js

+ 1
- 1
game.js 파일 보기

@@ -118,7 +118,7 @@ Returns the timeout id - but you still need to cancel it through stopTimer!
*/
function startTimer(config) {
const timeout = setTimeout(() => {
const result = config.func(state, config);
const result = config.func(config);
refresh();

// the timer may have terminated itself!


불러오는 중...
취소
저장