diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-05-15 00:03:46 -0700 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-05-15 00:03:46 -0700 |
commit | 8cddb0cfbedb05c0400abf0733e568ce3f63e88e (patch) | |
tree | aaaf0cb2eac3bf4b2083375dfbf261dd1390fce5 /src/client/documents/Documents.ts | |
parent | 2b79008596351f6948d8de80c7887446d97b068c (diff) | |
parent | f23fde615bbeb98a93923eab1ee11c2230e67cd5 (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
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 13687e4e8..18a0b43ff 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -607,7 +607,7 @@ export namespace Docs { return doc; } - export function InkDocument(color: string, tool: number, strokeWidth: number, points: { X: number, Y: number }[], options: DocumentOptions = {}) { + export function InkDocument(color: string, tool: number, strokeWidth: string, points: { X: number, Y: number }[], options: DocumentOptions = {}) { const I = new Doc(); I.type = DocumentType.INK; I.layout = InkingStroke.LayoutString("data"); |