"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'
};
});
})();