SeaWolf-AI commited on
Commit
22d88ac
·
verified ·
1 Parent(s): 66a0e80

draw the grid note after the grid is known

Browse files
Files changed (1) hide show
  1. app/static/index.html +1 -1
app/static/index.html CHANGED
@@ -744,8 +744,8 @@ async function pick(a){
744
  prompt_(a);
745
  drawTV(a);
746
  $("rk-sub").textContent = R.assets[a].label + " · $500 · " + R.assets[a].why;
747
- drawGrid(a);
748
  await Promise.all([drawChart(a), drawRank(a)]);
 
749
  }
750
 
751
  async function drawChart(a){
 
744
  prompt_(a);
745
  drawTV(a);
746
  $("rk-sub").textContent = R.assets[a].label + " · $500 · " + R.assets[a].why;
 
747
  await Promise.all([drawChart(a), drawRank(a)]);
748
+ drawGrid(a); /* 격자 정보는 drawChart 가 채운다. 그 뒤에 그린다. */
749
  }
750
 
751
  async function drawChart(a){