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