Преглед изворни кода

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() {
-    _.each(this.timers, function (t) {
+    _.each(this.timers, t => {
       this.$timeout.cancel(t);
     });
     this.timers = [];