[AngularJS] Re: should we unsubscribe from an observable?

2018-08-14 Thread Sander Elias
Hi José, There are some cases where it is not needed, but in general, you need to unsubscribe. At least when you have written a 'subscribe' in your code. it's not needed when you use the async pipe. Also, if you are sure an observable will run to completion before your code gets destroyed. you

[AngularJS] Re: Trying to embed Twitch video via AngularJS custom directive

2018-08-14 Thread Sander Elias
Hi Nicolas, In AngularJS you can not use

[AngularJS] [Angular] Testing Component with Multiple methods in the services

2018-08-14 Thread jamester go
Hi Guys I am currently testing the component for my app but i cant seem to find out how to put it in to work. Do you have samples or reference where i can check ways in doing this Thanks in advance for those who can answer :) -- You received this message because you are subscribed to the

[AngularJS] Angular 6 weird debugging error

2018-08-14 Thread Sonant Tone
Hello guys, [image: sdf.png] somehow I started to receive the following error message in the debugging tab. I have no clue what it is about. I installed a backup of my project and it happens there too, it might be some firefox option, I don't know. -- You received this message because you

[AngularJS] should we unsubscribe from an observable?

2018-08-14 Thread José Vilmar
Hi all. In my application developed using angular 6 I am using some observables. I am not sure if it is necessary to cancel the subscription made to observables or if the angular does this automatically. Some readings suggest that we need to perform an unsubscribe, and others suggest that the

[AngularJS] Trying to embed Twitch video via AngularJS custom directive

2018-08-14 Thread Nicolas Cerrato
Hello Angular community, I'm a beginner developer and i've been struggling lately trying to embed the Twitch video player in my AngularJS front end. >From my research, it seems like creating a directive and using angular.element is the way to go but now i’ve been stuck at that point for a

[AngularJS] Re: Create multi step angular 6 without material

2018-08-14 Thread Zlatko Đurić
Not sure exactly what you're aiming at - multi-step forms? Here's a pretty basic example (with dynamic steps as a bonus): https://stackblitz.com/edit/angular-multi-step-forms?file=src/app/app.component.ts Not very sophisticated, but it shows the basic steps, dynamic routes, static routes, such