(function () { 'use strict'; var streamApp = angular.module('streamApp'); streamApp.directive('buttonDirective', ['streamService', ButtonDirective]); function ButtonDirective(streamService) { return { restrict: 'E', scope: { label: '@', callback: '=' }, templateUrl: '/App/Directives/ui/buttonDirective.html?v=6.0.0c', link: function (scope, element, attrs, tabsCtrl) { } }; }; })();