diff options
author | bob <bcz@cs.brown.edu> | 2019-06-14 17:27:49 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-06-14 17:27:49 -0400 |
commit | f6e8b7a0f8a13ddf059cf701e46b8cbb8d9228f7 (patch) | |
tree | 9c9e64aac9836a3e842ecfccc69488198aa50ea0 /src/client/views/nodes/FieldView.tsx | |
parent | e9d07e9d84ff5b0419b36f73768c8b8583fd0607 (diff) |
added page fwd/back/goto
Diffstat (limited to 'src/client/views/nodes/FieldView.tsx')
-rw-r--r-- | src/client/views/nodes/FieldView.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/FieldView.tsx b/src/client/views/nodes/FieldView.tsx index 5a83de8e3..cf6d2012f 100644 --- a/src/client/views/nodes/FieldView.tsx +++ b/src/client/views/nodes/FieldView.tsx @@ -18,6 +18,7 @@ import { FormattedTextBox } from "./FormattedTextBox"; import { IconBox } from "./IconBox"; import { ImageBox } from "./ImageBox"; import { VideoBox } from "./VideoBox"; +import { PDFBox } from "./PDFBox"; // @@ -44,6 +45,7 @@ export interface FieldViewProps { PanelWidth: () => number; PanelHeight: () => number; setVideoBox?: (player: VideoBox) => void; + setPdfBox?: (player: PDFBox) => void; } @observer |