Skip to content

Commit

Permalink
wait before rendering issues
Browse files Browse the repository at this point in the history
  • Loading branch information
goose-life committed Feb 7, 2025
1 parent 32ae19d commit 39ab269
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
this.nodes = [];

this.listenTo(this.editorView, 'rendered', this.render);
this.listenTo(this.model, 'reset change add remove', this.render);
this.listenTo(this.model, 'reset change add remove', _.debounce(this.render, 100));
this.listenTo(this.documentContent, 'change', this.runLinters);
this.listenTo(this.attachments, 'reset change add remove', this.runLinters);
},
Expand Down

0 comments on commit 39ab269

Please sign in to comment.