aboutsummaryrefslogtreecommitdiff
path: root/src/new_fields/InkField.ts
diff options
context:
space:
mode:
authorStanley Yip <33562077+yipstanley@users.noreply.github.com>2020-01-08 15:34:28 -0500
committerGitHub <noreply@github.com>2020-01-08 15:34:28 -0500
commitfdbe921d80707f2e9006b3f6106d49e4e3f34a28 (patch)
tree322653b2aadc0864fc507596339950d468571a97 /src/new_fields/InkField.ts
parent19a71cb2788b9c1c8d8ced4af285bf91033ba626 (diff)
parent685ba9666929eddac09a09e77a2e4df1322af066 (diff)
Merge pull request #328 from browngraphicslab/pen
Pen
Diffstat (limited to 'src/new_fields/InkField.ts')
-rw-r--r--src/new_fields/InkField.ts6
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({