diff options
| -rw-r--r-- | docs/html/about/dashboards/index.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/about/dashboards/index.jd b/docs/html/about/dashboards/index.jd index a9f1985da9ce..3cbfde9cc386 100644 --- a/docs/html/about/dashboards/index.jd +++ b/docs/html/about/dashboards/index.jd @@ -381,7 +381,7 @@ $(document).ready(function(){ $divtable.append($table); $divchart.append($chart); $div.append($divtable).append($divchart); - $("#version-chart").append($div); + $("#version-chart").replaceWith($div); }); @@ -449,7 +449,7 @@ $(document).ready(function(){ // stack up and insert the elements $div.append($table).append($sizechart).append($densitychart); - $("#screens-chart").append($div); + $("#screens-chart").replaceWith($div); }); // TODO (akassay): Remove this. |