diff options
author | tschicke-brown <tyler_schicke@brown.edu> | 2019-06-26 22:23:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 22:23:57 -0400 |
commit | 68a71ec1af52e1e23374c2062c9f809e5fc905d6 (patch) | |
tree | c069375095fb53990dc53e7069f754990aec77af /src/client/documents/Documents.ts | |
parent | deb85766ac5648cc8e3ab4bf9d182ac5bbbbe144 (diff) | |
parent | 1e85e70295aedce1e1e82475e931084c08243c25 (diff) |
Merge pull request #172 from browngraphicslab/pdf_snippet
Expanded PDF Capabilities
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index b04fc401a..cc67c68e9 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -199,7 +199,7 @@ export namespace Docs { return audioProto; } - function CreateInstance(proto: Doc, data: Field, options: DocumentOptions, delegId?: string) { + export function CreateInstance(proto: Doc, data: Field, options: DocumentOptions, delegId?: string) { const { omit: protoProps, extract: delegateProps } = OmitKeys(options, delegateKeys); if (!("author" in protoProps)) { protoProps.author = CurrentUserUtils.email; |