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

15 lines
326 B
JavaScript

"use strict";
(function () {
'use strict';
angular.module('changeModule')
.directive('changeWizard', [
function () {
return {
restrict: 'E',
replace: true,
templateUrl: 'views/change/change-wizard.html'
};
}
]);
})();