Skip to content

Commit

Permalink
fix tournament first move warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Apr 4, 2015
1 parent 31a46b1 commit 8a33735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/round/src/view/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function renderTablePlay(ctrl) {
button.cancelDrawOffer(ctrl),
button.answerOpponentDrawOffer(ctrl),
button.cancelTakebackProposition(ctrl),
button.answerOpponentTakebackProposition(ctrl), (game.tournament && game.nbMoves(d, d.player.color) === 0) ? m('div.text[data-icon=j]',
button.answerOpponentTakebackProposition(ctrl), (ctrl.data.tournament && game.nbMoves(d, d.player.color) === 0) ? m('div.text[data-icon=j]',
ctrl.trans('youHaveNbSecondsToMakeYourFirstMove', 30)
) : null
]);
Expand Down

0 comments on commit 8a33735

Please sign in to comment.