22 lines
541 B
JavaScript
22 lines
541 B
JavaScript
"use strict";
|
|
(function () {
|
|
'use strict';
|
|
angular.module('changeModule')
|
|
.directive('changeWizardTab', [
|
|
function () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
scope: {
|
|
tabid: '=',
|
|
title: '@',
|
|
icon: '@',
|
|
selectedtab: '=',
|
|
valid: '&'
|
|
},
|
|
templateUrl: 'views/change/change-wizard-tab.html'
|
|
};
|
|
}
|
|
]);
|
|
})();
|