aboutsummaryrefslogtreecommitdiff
path: root/src/fields
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-10-27 15:57:09 -0400
committerbobzel <zzzman@gmail.com>2022-10-27 15:57:09 -0400
commit2fc88a931cb2fc3408297b000208990633445585 (patch)
tree36f061b6b539bc14d1c37d0517325a14f57647a4 /src/fields
parent3b1162f58fd854091fca515dfe9af942d2220108 (diff)
cleaned up treeViews to work across PresBox/ppt slides/collections/ - modified DocumentView rendering to remove pres box refs. fixed mainView width.
Diffstat (limited to 'src/fields')
-rw-r--r--src/fields/Doc.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts
index 466b43287..fc43325fe 100644
--- a/src/fields/Doc.ts
+++ b/src/fields/Doc.ts
@@ -238,6 +238,9 @@ export class Doc extends RefField {
Doc.UserDoc().activePage = val;
DocServer.UPDATE_SERVER_CACHE();
}
+ public static IsComicStyle(doc?: Doc) {
+ return doc && Doc.ActiveDashboard && !Doc.IsSystem(doc) && Doc.UserDoc().renderStyle === 'comic';
+ }
public static get ActiveDashboard() {
return DocCast(Doc.UserDoc().activeDashboard);
}