UNPKG

angular-google-chart

Version:
18 lines (14 loc) 389 B
/* global angular, google */ /* jshint -W072 */ (function(){ angular.module('googlechart') .directive('googleChart', googleChartDirective); googleChartDirective.$inject = []; function googleChartDirective() { return { restrict: 'A', scope: false, controller: 'GoogleChartController' }; } })();