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