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