Skip to content

Commit

Permalink
add revision number to the exported filename )
Browse files Browse the repository at this point in the history
  • Loading branch information
gf-mse committed Aug 5, 2022
1 parent 982e263 commit 9eb4ee7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nullboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -3433,7 +3433,8 @@ <h3>Auto-backup</h3>
{
var board = NB.board;
blob = JSON.stringify(board);
file = `Nullboard-${board.id}-${board.title}.nbx`;
// file = `Nullboard-${board.id}-${board.title}.nbx`;
file = `Nullboard-${board.id}.${board.revision}-${board.title}.nbx`;
}

blob = encodeURIComponent(blob);
Expand Down

0 comments on commit 9eb4ee7

Please sign in to comment.