SmartIT_Extensions/BMC/smart-it-full-helix/scripts/app/asset/list-ci-nav-directive.js

16 lines
380 B
JavaScript

"use strict";
(function () {
'use strict';
angular.module('assetModule')
.directive('listCiNav', [function () {
return {
restrict: 'E',
replace: true,
templateUrl: 'views/asset/list-ci-nav.html',
scope: {
model: '='
}
};
}]);
}());