fix: typos
This commit is contained in:
@ -5,7 +5,7 @@ export class TicTacToeOfflineView extends AbstractView
|
||||
{
|
||||
constructor(params)
|
||||
{
|
||||
super(params, lang.get('ticTacToe'));
|
||||
super(params, "ticTacToeTitle");
|
||||
this.width = 510;
|
||||
this.height = 510;
|
||||
this.morpion = [[],[],[],[],[],[],[],[],[]];
|
||||
@ -237,7 +237,7 @@ export class TicTacToeOfflineView extends AbstractView
|
||||
{
|
||||
return `
|
||||
<link rel="stylesheet" href="/static/css/tictactoe.css">
|
||||
<h1>${lang.get('ticTacToe')}</h1>
|
||||
<h1>${lang.get('ticTacToeTitle')}</h1>
|
||||
<div style="display: flex">
|
||||
<canvas id="Morpion" width="${this.width}" height="${this.height}"></canvas>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user