Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c42965c authored by Amanda Kassay's avatar Amanda Kassay Committed by android-build-merger
Browse files

Fix for b/30088807 Dashboard page repeating charts three times on mobile....

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

Change-Id: Ibc27ac036690bff63481e54e88fefb0fa91fcdc1
parents 1d0af87a 1825bb09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.