From f995290622450876d6eff31e283ac0b520902598 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Sun, 15 Apr 2012 17:27:53 +0000 Subject: [PATCH] Some website improvements (fix for IE) --- jOOQ-website/community.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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