We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9388403 commit 0e6e7b7Copy full SHA for 0e6e7b7
js/app.js
@@ -48,7 +48,7 @@ function readTextFile(file, num) {
48
if (rawFile.status === 200 || rawFile.status == 0) {
49
var allText = rawFile.responseText;
50
var words = allText.split("\n");
51
- sensation = "inanimating";//words[Math.abs(num % (words.length - 1))];
+ sensation = words[Math.abs(num % (words.length - 1))];
52
53
document.getElementById("sensation").innerHTML = sensation + " sensation";
54
document.getElementById("title").innerHTML += sensation + " sensation :O";
0 commit comments