diff options
author | bobzel <zzzman@gmail.com> | 2020-12-16 22:35:44 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-16 22:35:44 -0500 |
commit | 5bbc8dfe46a7bb2a9e1b09a4d67ed68a7533ab78 (patch) | |
tree | 00c3b4a5ae8124b7dbe1ea075ee6ee1f89bdfdb2 /src/client/views/nodes/CollectionFreeFormDocumentView.tsx | |
parent | 0fbfb06c499d2ee52b086427cbf1c5431fadfad9 (diff) |
cleaned up removing frame animation fields
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index 99a21fb0c..3c29e0043 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -33,7 +33,7 @@ export interface CollectionFreeFormDocumentViewProps extends DocumentViewProps { @observer export class CollectionFreeFormDocumentView extends DocComponent<CollectionFreeFormDocumentViewProps, Document>(Document) { - static animFields = ["_height", "_width", "x", "y", "_scrollTop", "opacity"]; // fields that are configured to be animatable using animation frames + public static animFields = ["_height", "_width", "x", "y", "_scrollTop", "opacity"]; // fields that are configured to be animatable using animation frames @observable _animPos: number[] | undefined = undefined; @observable _contentView: DocumentView | undefined | null; random(min: number, max: number) { // min should not be equal to max |