Skip to content

Commit

Permalink
Merge pull request #66 from rpavlik/eslint
Browse files Browse the repository at this point in the history
Eslint fixes
  • Loading branch information
apankrat authored Nov 5, 2023
2 parents 91411d9 + a3cc607 commit d6384d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nullboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
-ms-user-select: none;
user-select: none;
}
}

/***/
.clearfix:after,
.board:after,
Expand Down Expand Up @@ -1711,7 +1711,7 @@ <h3>Auto-backup</h3>
return Math.min(Math.max(this, min), max);
};

/*
/*
* add a blank line to push 'Prevent this page from opening ...'
* tack-on from the actual message we are trying to display
*/
Expand Down Expand Up @@ -1986,7 +1986,7 @@ <h3>Auto-backup</h3>
var meta = this.boardIndex.get(board_id);

if (! meta)
throw `Invalid board_id in nukeBoard(${board.id})`;
throw `Invalid board_id in nukeBoard(${board_id})`;

var title = meta.title + '';

Expand Down Expand Up @@ -2039,7 +2039,7 @@ <h3>Auto-backup</h3>
var meta = this.boardIndex.get(board_id);

if (! meta)
throw `Invalid board_id in setBoardRevision(${board_id}, ${revision})`;
throw `Invalid board_id in setBoardUiSpot(${board_id}, ${ui_spot})`;

meta.ui_spot = ui_spot;

Expand Down Expand Up @@ -3476,7 +3476,7 @@ <h3>Auto-backup</h3>
return "Required board properties are empty.";

if (foo.format != NB.blobVersion)
return `Unsupported blob format "${foo.format}", expecting "${NB.blobVersion}".`;
return `Unsupported blob format "${foo.format}", expecting "${NB.blobVersion}".`;

return null;
}
Expand Down

0 comments on commit d6384d0

Please sign in to comment.