Skip to content

Commit 0e6e7b7

Browse files
authored
Update app.js
1 parent 9388403 commit 0e6e7b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function readTextFile(file, num) {
4848
if (rawFile.status === 200 || rawFile.status == 0) {
4949
var allText = rawFile.responseText;
5050
var words = allText.split("\n");
51-
sensation = "inanimating";//words[Math.abs(num % (words.length - 1))];
51+
sensation = words[Math.abs(num % (words.length - 1))];
5252

5353
document.getElementById("sensation").innerHTML = sensation + " sensation";
5454
document.getElementById("title").innerHTML += sensation + " sensation :O";

0 commit comments

Comments
 (0)