aboutsummaryrefslogtreecommitdiff
path: root/src/fields/ImageField.ts
diff options
context:
space:
mode:
authorAndrew Kim <andrewdkim@users.noreply.github.com>2019-02-23 16:19:45 -0500
committerAndrew Kim <andrewdkim@users.noreply.github.com>2019-02-23 16:19:45 -0500
commit07f5e56508c362725db003736a0f7980cd72107d (patch)
tree697242d7468203c46a5847cef2d24bd0d4001968 /src/fields/ImageField.ts
parent5b55e1b6081393989ca35d2964da9604c2a93802 (diff)
PDFNode
Diffstat (limited to 'src/fields/ImageField.ts')
-rw-r--r--src/fields/ImageField.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fields/ImageField.ts b/src/fields/ImageField.ts
index bc2e7cdf4..b7470b657 100644
--- a/src/fields/ImageField.ts
+++ b/src/fields/ImageField.ts
@@ -1,5 +1,6 @@
import { BasicField } from "./BasicField";
import { Field } from "./Field";
+import {observable} from "mobx"
export class ImageField extends BasicField<URL> {
constructor(data: URL | undefined = undefined) {
@@ -13,5 +14,8 @@ export class ImageField extends BasicField<URL> {
Copy(): Field {
return new ImageField(this.Data);
}
+
+ @observable
+ Page:Number = 1;
} \ No newline at end of file