Skip to content

Commit 2db02ee

Browse files
committed
small fixes
1 parent a46c231 commit 2db02ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_pages/wc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ description: Word cloud visualization of blog posts by year.
3232
</select>
3333
</div>
3434

35-
<canvas id="wordcloud" width="800" height="600"></canvas>
35+
<canvas id="wordcloud" width="100%" height="100%"></canvas>
3636

3737
<script>
3838
const canvas = document.getElementById('wordcloud');
@@ -43,7 +43,7 @@ description: Word cloud visualization of blog posts by year.
4343

4444
const endYear = new Date().getFullYear();
4545
for(let year = 2006; year <= endYear; year++) {
46-
studentSelect.append(new Option(""+year, ""+year, true, true));
46+
yearSelect.append(new Option(""+year, ""+year, true, true));
4747
}
4848
});
4949

0 commit comments

Comments
 (0)