From b99fcdd160ee6fb46497a4f5db944d5d3dcf796d Mon Sep 17 00:00:00 2001 From: vonavi Date: Sat, 5 Oct 2013 23:30:54 +0300 Subject: [PATCH] Modify the HTML class of cells in the tournament table. --- lib/lorchess/tournament_table.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/lorchess/tournament_table.rb b/lib/lorchess/tournament_table.rb index 625480f..8d6425b 100644 --- a/lib/lorchess/tournament_table.rb +++ b/lib/lorchess/tournament_table.rb @@ -122,10 +122,10 @@ module LORChess for row in 0..(@dim-1) - @buffer << " \n" - @buffer << " " << (row+1).to_s << "\n" - @buffer << " " << @players[row] << "\n" - @buffer << " " << @elo_list[row] << "\n" + @buffer << " \n" + @buffer << " " << (row+1).to_s << "\n" + @buffer << " " << @players[row] << "\n" + @buffer << " " << @elo_list[row] << "\n" for cell in 0..(@dim-1) unless cell == row @@ -135,8 +135,8 @@ module LORChess end end - @buffer << " " << @player_score[row] << "\n" - @buffer << " " << @player_place[row] << "\n" + @buffer << " " << @player_score[row] << "\n" + @buffer << " " << @player_place[row] << "\n" @buffer << " \n" end