15 lines
375 B
Python
15 lines
375 B
Python
'use strict';
|
|
|
|
app.controller('DistributionSystemMasterController', function($scope) {
|
|
|
|
$scope.$on('handleEmitDistributionSystemChanged', function(event) {
|
|
$scope.$broadcast('handleBroadcastDistributionSystemChanged');
|
|
});
|
|
|
|
$scope.$on('handleEmitDistributionCircuitChanged', function(event) {
|
|
$scope.$broadcast('handleBroadcastDistributionCircuitChanged');
|
|
});
|
|
|
|
|
|
});
|