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