SmartIT_Extensions/BMC/smart-it-full-helix/scripts/app/common/sla-reach-time-directive.js

15 lines
345 B
JavaScript

"use strict";
(function () {
'use strict';
angular.module('myitsmApp').directive('slaReachTime', function () {
return {
restrict: 'E',
replace: true,
scope: {
sla: '='
},
templateUrl: 'views/ticket/partials/sla-reach-time.html'
};
});
})();