X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Fout-of-order.html;fp=tests%2Fout-of-order.html;h=10ad58dfd8a6316b1a323ba13cb8bcac59931e2c;hb=f6fbf9e09f24167a8e28e39a5fc2d6a1b5184bfa;hp=45de8419d960026fa67f8adebd27b8c047cebb2a;hpb=3dcf1f1f6ade5ff7465ebcffc52c1dd93f9d0b72;p=dygraphs.git diff --git a/tests/out-of-order.html b/tests/out-of-order.html index 45de841..10ad58d 100644 --- a/tests/out-of-order.html +++ b/tests/out-of-order.html @@ -47,11 +47,11 @@ function drawVisualization() { data = createDataTable('date'); - new Dygraph.GVizChart( + var chart = new Dygraph.GVizChart( document.getElementById('dygraphs_gviz')).draw(data, { }); - new Dygraph(document.getElementById('dygraphs'), csv); + var graph = new Dygraph(document.getElementById('dygraphs'), csv); } google.setOnLoadCallback(drawVisualization);