diff options
author | bob <bcz@cs.brown.edu> | 2019-07-22 15:46:53 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-07-22 15:46:53 -0400 |
commit | e87727dd111a5370a064e675b9b7c966cb84dfb0 (patch) | |
tree | 000e38d6f90dfcc718a4bbabe7204ee61f8d0918 | |
parent | 872d5b1ddd8868d316b0775317a73a04de8c240b (diff) |
fixed link following to video frames.
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index e0975f7bd..9429f0d78 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -351,7 +351,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu // @TODO: shouldn't always follow target context let linkedFwdContextDocs = [first.length ? await (first[0].targetContext) as Doc : undefined, undefined]; - let linkedFwdPage = [first.length ? NumCast(first[0].linkedToPage, undefined) : undefined, undefined]; + let linkedFwdPage = [first.length ? NumCast(first[0].anchor2Page, undefined) : undefined, undefined]; if (!linkedFwdDocs.some(l => l instanceof Promise)) { let maxLocation = StrCast(linkedFwdDocs[0].maximizeLocation, "inTab"); |