diff --git a/jOOQ-website/community.php b/jOOQ-website/community.php index 132d74d86f..cb69053287 100644 --- a/jOOQ-website/community.php +++ b/jOOQ-website/community.php @@ -117,7 +117,8 @@ yourself heard to many database users! // https://google-developers.appspot.com/chart/interactive/docs/quick_start // https://google-developers.appspot.com/chart/interactive/docs/gallery/linechart#Configuration_Options google.load("visualization", "1", {packages:["corechart"]}); - $.getJSON('/json/stats.php', function(data) { + google.setOnLoadCallback(function() { + $.getJSON('/json/stats.php', function(data) { var rows = new Array(); var total = 0; @@ -174,7 +175,8 @@ yourself heard to many database users! textStyle: { color: '#ffffff' } } }); - }); + }); + });

Donations