Skip to content

Commit

Permalink
Load list width on load
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpchang committed Nov 10, 2022
1 parent 5040332 commit 07b7941
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 @@ -4433,6 +4433,9 @@ <h3>Auto-backup</h3>
if (conf.lineHeight)
setLineHeight(conf.lineHeight);

if (conf.listWidth)
setListWidth(conf.listWidth);

updateVarsAndLayout();
}

Expand Down Expand Up @@ -4874,8 +4877,7 @@ <h3>Auto-backup</h3>

//
$('.wrap').on('mousedown', '.board .note .text', function(ev){
if (ev.which === 1)
NB.noteDrag.prime(this.parentNode, ev);
NB.noteDrag.prime(this.parentNode, ev);
});

$('.config').on('mousedown', 'a.load-board', function(ev){
Expand Down

0 comments on commit 07b7941

Please sign in to comment.