Explorar o código

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

Torkel Ödegaard %!s(int64=8) %!d(string=hai) anos
pai
achega
3e3cef28ec
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 = [];