diff options
author | bobzel <zzzman@gmail.com> | 2023-09-06 13:53:32 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-09-06 13:53:32 -0400 |
commit | dc92e167391988b63e3ff15e67bcfad6df21c044 (patch) | |
tree | 39b87daed5b2e56c707f837b54dabc31425697ee /src/fields/Doc.ts | |
parent | 3deba59a1923a6d95c9ba506aad05288911eab42 (diff) |
fixed up audio annotation to add dictation to sidebar note.
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 2a1dfbfc7..dd3f11444 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -20,6 +20,7 @@ import { AclPrivate, AclReadonly, Animation, + AudioPlay, CachedUpdates, DirectLinks, DocAcl, @@ -349,6 +350,7 @@ export class Doc extends RefField { @observable public [DocAcl]: { [key: string]: symbol } = {}; @observable public [DocCss]: number = 0; // incrementer denoting a change to CSS layout @observable public [DirectLinks] = new ObservableSet<Doc>(); + @observable public [AudioPlay]: any; // meant to store sound object from Howl @observable public [Animation]: Opt<Doc>; @observable public [Highlight]: boolean = false; static __Anim(Doc: Doc) { |