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