Skip to content Skip to sidebar Skip to footer

AngularJS And Typescript Broadcast

I have following problem. I want to broadcast array of albums to another controller. Structure of my controllers : Parent - multimediaController, child - multimediaAlbumControlle

Solution 1:

please make $scope variable public.

constructor(public scope:ng<IScope>) {
 this.$scope = scope;
}

Post a Comment for "AngularJS And Typescript Broadcast"