I want to see that 2 contorller called by 1 contorller. How to make it call? PS. B is in the iframe tag. Please help me.
now html source structure
A.html (A.js)
B.html (B.js) A children tag - iframe
now js source (A.js)
var app = angular.module('upload',[nUpload]); //nUpload is other module
app.controller('upload',[$scope,nupload,
function($scope,nupload){ //nupload is service of nUpload module
.... //fileupload
}]); ----- **1contorller**
B.js (js file is in the other html tag (iframe))
var app = angular.module('progress',['']);</br>
app.controller('progress',[$scope,,,,] function($scope,,){
... //draw progress }
); ----- **2contorller**
I dream of sources (A.js)
app.controller('upload',,,,
function(,,,){
B.progress = "10%"
}