Skip to content

Commit

Permalink
Added bottom bracket to ubuntu-mono.woff and used it instead of space…
Browse files Browse the repository at this point in the history
… for... spaces. Removed trailing space. Have not figured out how to deal with nonvisual feedback of last character errors yet.
  • Loading branch information
Rye Terrell committed Feb 26, 2012
1 parent faaeab2 commit 89af567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions keyzen.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function render_level() {
chars += "<span style='color: #AAA' onclick='set_level(" + c + ");'>"
}
if (data.chars[c] == ' ') {
chars += " space ";
chars += "&#9141;";
}
else {
chars += data.chars[c];
Expand Down Expand Up @@ -146,7 +146,7 @@ function render_word() {
}
word += "<span class='" + sclass + "'>";
if(data.word[i] == " ") {
word += "&nbsp;"
word += "&#9141;"
}
else {
word += data.word[i];
Expand All @@ -168,7 +168,6 @@ function generate_word() {
word += choose(get_level_chars());
}
}
word += ' ';
return word;
}

Expand Down
Binary file modified ubuntu-mono.woff
Binary file not shown.

0 comments on commit 89af567

Please sign in to comment.