-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
35 lines (29 loc) · 1.16 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
angular.module('myApp')
.controller('WidgetChildController', function($scope,$controller){
$.extend(this, $controller('WidgetController', {$scope: $scope}));
console.log($scope.parentData);
})
.controller( 'FirstChildCtrl', function ($scope,$controller,Data){
$.extend(this, $controller('FirstCtrl', {$scope: $scope}));
console.log('first-log-point',$scope.user);
})
.directive("firstitem", function(){
return{
restrict: "E",
template: "<div><span><b>This is a child extended data from the root Controller:</b></span><span> </span>{{user}}</div>",//print out the parent data
}
})
.controller( 'SecondChildCtrl', function($scope,$controller,Data){
$.extend(this, $controller('SecondCtrl', {$scope: $scope}));
console.log('first-log-point',$scope.user2);
})
.directive("seconditem", function(){
return{
restrict: "E",
template: "<div><span><b>This is a child extended data from the root Controller:</b></span><span> </span>{{user2}}</div>",//print out the parent data
}
})
.controller( 'ThirdChildController', function($scope,$controller,Data){
$.extend(this, $controller('ThirdCtrl', {$scope: $scope}));
$scope.data = Data;
})