Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Nov 14, 2024
1 parent 0b879a5 commit cc30aca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions plugins/alignments/src/LinearPileupDisplay/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,20 +75,25 @@ function stateModelFactory(configSchema: AnyConfigurationSchemaType) {
.volatile(() => ({
/**
* #volatile
* check if the sorting is complete before rendering
*/
sortReady: false,
/**
* #volatile
* the sort is relative to a current zoom level due to the layout being
* linked to a certain zoom level
*/
currSortBpPerPx: 0,
/**
* #volatile
* visible MM tag type modifications in current region
*/
visibleModifications: observable.map<string, ModificationTypeWithColor>(
{},
),
/**
* #volatile
* whether we have checked for mods at least once
*/
modificationsReady: false,
}))
Expand Down

0 comments on commit cc30aca

Please sign in to comment.