Fix for b/30088807 Dashboard page repeating charts three times on mobile. Staged: https://android-dot-devsite.googleplex.com/about/dashboards/index.html am: 83fb75ded3

am: e9d58227bb

Change-Id: I29289c7aaaf34fb2889c8438f754b050b2dc2aec
This commit is contained in:
Amanda Kassay
2016-07-21 15:39:48 +00:00
committed by android-build-merger

View File

@@ -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.