Msg in initController dashboard

initController: function ($scope) {																		
    
    $scope.$watch('msg', function (msg) {
        if (!msg) {								
            return;
        }
        // msg with all it's properties available here							
                                    
    });
}
2 Likes