25 lines
588 B
JavaScript
25 lines
588 B
JavaScript
"use strict";
|
|
/**
|
|
* Created by andey on 16-11-2016.
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
angular.module('releaseModule')
|
|
.directive('releaseWizardTab', [
|
|
function () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
scope: {
|
|
tabid: '=',
|
|
title: '@',
|
|
icon: '@',
|
|
selectedtab: '=',
|
|
valid: '&'
|
|
},
|
|
templateUrl: 'views/release/release-wizard-tab.html'
|
|
};
|
|
}
|
|
]);
|
|
})();
|