(function () { "use strict"; var streamApp = angular.module('streamApp'); streamApp.directive('promptQuestionDirective', [PromptQuestionDirective]); function PromptQuestionDirective() { return { restrict: 'E', scope: { prompt: '=' }, templateUrl: '/App/Directives/prompts/promptQuestionDirective/promptQuestionDirective.html?v=6.0.0c', link: function (scope, element, attrs, tabsCtrl) { } }; } }());