"use strict"; /** * Created by viktor.shevchenko on 10/22/2014. */ (function () { 'use strict'; angular.module('myitsmApp') .directive('iconPriorityIndicator', function () { return { restrict: 'E', transclude: true, template: '
', link: function (scope, iElem, iAttrs) { scope.priority = iAttrs.priority ? iAttrs.priority.toLowerCase() : ''; } }; }); }());