Skip to content

Commit

Permalink
added board-id.board-revision to the page title - shall help distingu…
Browse files Browse the repository at this point in the history
…ish between imported boards with the same name
  • Loading branch information
gf-mse committed Aug 5, 2022
1 parent 9eb4ee7 commit a612a59
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nullboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -3873,8 +3873,10 @@ <h3>Auto-backup</h3>

if (NB.board)
{
title = NB.board.title;
title = 'NB - ' + (title || '(untitled board)');
title = NB.board.title || '(untitled board)' ;
// title = 'NB - ' + (title || '(untitled board)');
title = 'NB - ' + title + " - " + NB.board.id + '.' + NB.board.revision ;

}

document.title = title;
Expand Down

0 comments on commit a612a59

Please sign in to comment.