|
"use strict";
|
|
/**
|
|
* Created by andey on 07-12-2016.
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
angular.module('releaseModule')
|
|
.directive('releasePlanDetails', function () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
templateUrl: 'views/release/release-plan-details.html'
|
|
};
|
|
});
|
|
})();
|