We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a46c231 commit 2db02eeCopy full SHA for 2db02ee
_pages/wc.md
@@ -32,7 +32,7 @@ description: Word cloud visualization of blog posts by year.
32
</select>
33
</div>
34
35
-<canvas id="wordcloud" width="800" height="600"></canvas>
+<canvas id="wordcloud" width="100%" height="100%"></canvas>
36
37
<script>
38
const canvas = document.getElementById('wordcloud');
@@ -43,7 +43,7 @@ description: Word cloud visualization of blog posts by year.
43
44
const endYear = new Date().getFullYear();
45
for(let year = 2006; year <= endYear; year++) {
46
- studentSelect.append(new Option(""+year, ""+year, true, true));
+ yearSelect.append(new Option(""+year, ""+year, true, true));
47
}
48
});
49
0 commit comments