SmartIT_Extensions/BMC/smart-it-full-helix/scripts/app/asset/relate-asset-controller.js

16 lines
548 B
JavaScript

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