SmartIT_Extensions/BMC/smart-it-full/scripts/app/change/change-wizard-tab-directive.js

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