Skip to content

Commit

Permalink
merge parser changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lily2point0 committed Jun 1, 2017
1 parent 9088902 commit a13c559
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/oCrossword.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function buildGrid(

let count = 0;

if(across[3].length > 1) {
if(across[3].length > 1) {
for(var j = 0; j < across[3].length; ++j) {
if(j%2 === 1) {
count += parseInt(across[3][j-1]);
Expand Down Expand Up @@ -177,7 +177,7 @@ function buildGrid(

let count = 0;

if(down[3].length > 1) {
if(down[3].length > 1) {
for(var j = 0; j < down[3].length; ++j) {
if(j%2 === 1) {
count += parseInt(down[3][j-1]);
Expand Down

0 comments on commit a13c559

Please sign in to comment.