소스 검색

fix: undefined is not an object evaluating this., #9538

Torkel Ödegaard 8 년 전
부모
커밋
3e3cef28ec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      public/app/core/services/timer.ts

+ 1 - 1
public/app/core/services/timer.ts

@@ -21,7 +21,7 @@ export class Timer {
   }
   }
 
 
   cancelAll() {
   cancelAll() {
-    _.each(this.timers, function (t) {
+    _.each(this.timers, t => {
       this.$timeout.cancel(t);
       this.$timeout.cancel(t);
     });
     });
     this.timers = [];
     this.timers = [];