diff options
author | Stanley Yip <stanley_yip@brown.edu> | 2019-12-03 18:54:41 -0500 |
---|---|---|
committer | Stanley Yip <stanley_yip@brown.edu> | 2019-12-03 18:54:41 -0500 |
commit | fb9f08295c10c35c11b647d00a3c830867dc3f7d (patch) | |
tree | 76126c5d894fc54a17bcfa901cb23bd93e473d61 /src/new_fields/InkField.ts | |
parent | cb2edb837ffa9df5ad966d44ac0c26622d6579f0 (diff) |
nothing new, infrastructure stuffs
Diffstat (limited to 'src/new_fields/InkField.ts')
-rw-r--r-- | src/new_fields/InkField.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/new_fields/InkField.ts b/src/new_fields/InkField.ts index 2d8bb582a..83d631958 100644 --- a/src/new_fields/InkField.ts +++ b/src/new_fields/InkField.ts @@ -13,14 +13,14 @@ export enum InkTool { } export interface PointData { - x: number; - y: number; + X: number; + Y: number; } export type InkData = Array<PointData>; const pointSchema = createSimpleSchema({ - x: true, y: true + X: true, Y: true }); const strokeDataSchema = createSimpleSchema({ |