(function () { "use strict"; var streamApp = angular.module('streamApp'); streamApp.directive('dialogDirective', [DialogDirective]); function DialogDirective() { return { restrict: 'E', scope: { messages: '=', hideIcon: '@', show: '=', callback: '=', callbackData: '=' }, templateUrl: '/App/Directives/dialogDirective/dialogDirective.html?v=6.0.0c', link: function (scope, element, attrs, tabsCtrl) { scope.hide = function () { scope.show = !scope.show; }; } }; } }());