15 lines
479 B
JavaScript
15 lines
479 B
JavaScript
"use strict";
|
|
/**
|
|
* Created by andey on 05-01-2016.
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
angular.module('assetModule')
|
|
.controller('RelatePeopleController', ['$scope', '$modalInstance', 'events', function ($scope, $modalInstance, events) {
|
|
$scope.modalInstance = $modalInstance;
|
|
$scope.$on(events.MODAL_BACKDROP_CLICK, function () {
|
|
$scope.$broadcast(events.MODAL_BACKDROP_CLICK_PROPOGATE);
|
|
});
|
|
}]);
|
|
})();
|