Cláudio Margulhano
Cláudio Margulhano
I'm really blocked: Failed to install 'cordova-plugin-firebase': CordovaError: Using "requireCordovaModule" to load non-cordova module "xcode" is not supported. Instead, add this module to your dependencies and use regular "require" to...
In my case, in prod mode, these errors do not stop, but we cannot see, since console.log is disabled. I changed code of the pipe to include change detection and...
`detectChanges() : void ` ---->>> to checks the change detector and its children: What it means if there is a case where any thing inside your model has changed but...
Sorry folks, the error still occurs, I'm looking for the solution but I think that's the way.
Yes @plul we could try this: return window.setTimeout(() => { this.ngZone.run(() => { this.changeDetectorRef.detectChanges(); this.changeDetectorRef.markForCheck(); }); }, timeToUpdate);
Why you are using ngZone? Why not use simple setTimeout like that: ``` this.timer = window.setTimeout(() => { this.changeDetectorRef.detectChanges(); }, timeToUpdate); ``` I'm testing this right now. I will let...
Cool man. Congratulations! Nice work. I will test! All my best, Cláudio 2017-07-07 13:16 GMT-03:00 Asger Juul Brunshøj : > I propose the following. It works perfectly in my code...