diff options
author | bob <bcz@cs.brown.edu> | 2019-07-31 11:48:29 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-07-31 11:48:29 -0400 |
commit | a75f6fb17a4cbb4643cff0d347eb812138957c95 (patch) | |
tree | a8769a3f3d7a1ca4a48a2bbfbe32ee3d246627a8 /src/client/views/collections/CollectionView.tsx | |
parent | 1e50488861a1fbadea399bd529b8d51053a3d9b4 (diff) |
fixed some css and creating text links.
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionView.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx index 34adc5840..57dc5879b 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -111,6 +111,9 @@ export class CollectionView extends React.Component<FieldViewProps> { } ContextMenu.Instance.addItem({ description: "View Modes...", subitems: subItems, icon: "eye" }); ContextMenu.Instance.addItem({ description: "Apply Template", event: () => this.props.addDocTab && this.props.addDocTab(Doc.ApplyTemplate(this.props.Document)!, undefined, "onRight"), icon: "project-diagram" }); + ContextMenu.Instance.addItem({ + description: this.props.Document.chromeStatus !== "disabled" ? "Hide Chrome" : "Show Chrome", event: () => this.props.Document.chromeStatus = (this.props.Document.chromeStatus !== "disabled" ? "disabled" : "enabled"), icon: "project-diagram" + }); } } |