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