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