X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=scribe%2Fscribe.jsx;h=d66fc049b9a90b7c17c94ad39942b6d03312f17a;hp=2cc51483c3a429f5a2f0d0e91d7ddf0deda8109c;hb=f44e7e5f69e19ceb1909f371eb88e44e736990ee;hpb=c6ffca52b75480ad51ff1907a990b02f64885476 diff --git a/scribe/scribe.jsx b/scribe/scribe.jsx index 2cc5148..d66fc04 100644 --- a/scribe/scribe.jsx +++ b/scribe/scribe.jsx @@ -402,9 +402,9 @@ class Board extends React.Component { * b. This mini grid corresponds to this players last turn * c. The mini grid that corresponds to the players last turn is full */ - let active = false; + let grid_active = false; if (this.props.active) { - active = true; + grid_active = true; if (this.props.last_two_moves.length > 1) { /* First index (0) gives us our last move, (that is, of the * last two moves, it's the first one, so two moves ago). @@ -422,7 +422,7 @@ class Board extends React.Component { /* If the target mini-grid isn't full then this grid is * only active if it is that target. */ if (occupied < 9) - active = (i === target); + grid_active = (i === target); } } @@ -438,7 +438,7 @@ class Board extends React.Component { return ( this.props.onClick(i,j)} />