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