Skip to content

Commit

Permalink
Removing double-fontage
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Harnly committed May 7, 2012
1 parent 55b94ce commit 3720fb7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions js/lw.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
function init() {
letterWeight([{font: 'Helvetica', style:'bold'}, {font: 'Times New Roman', style:'bold'}]);
letterWeight([
{font: 'Helvetica', style:'bold'}
//{font: 'Times New Roman', style:'bold'}
]);
}
window.onload = init;
var timeout;
Expand All @@ -17,7 +20,7 @@ function letterWeight(typefaces) {
function lettersToRender() {
var letters = new Array();
for (var c = "a"; c <= "z"; c = String.fromCharCode(c.charCodeAt(0)+1)) {
// letters.push(c);
letters.push(c);
letters.push(c.toUpperCase());
}
return letters;
Expand Down

0 comments on commit 3720fb7

Please sign in to comment.