leomayer

Results 15 comments of leomayer

The following code works for me: ``` private zone: NgZone; ... this.zone.run(() => { this.toast.error(strTitle, strContent); }); ``` The above code works as wrapper... in ones own app @flauc To...

@derekmt12 : Great .. Thanks... after 3 hours searching how to fix your workaround works like a charm

Note: While e.g. Chromium takes 9secs on FF the same settings takes 35 secs!!!

hmmm... don't know what you mean with PR.... Matter of fact: - I can adapt the code in our project - I never worked with GitHub nor have an idea...

I did several changes on the code because if the timing lacks the whole code is a pain in the a** The following changes fixes some other issues as well...

Changes I did: ``` private stopTime = false; private timer: any; private speed: 25; // time in ms for a new check if time has ellapsed private start: number; ```...

The default file extension is `.scss` but the required format is `scss`! Therefore it cannot find a file with `component..scss`

I don't know what's the "correct" way to fix this issue. It is working for me with ``` "importOrderParserPlugins": ["typescript", "decorators-legacy"] ``` Just in case if somebody else stumbles over...

My major problem is to distinguish between a `TextNode` with a regular empty white space and a `TextNode` which is just a linefeed. The later one I ignore while the...

First of all I'm glad to have found the root cause of my misery - for coding ;-) Well I was NOT aware that line feed was the root cause...