diff options
author | bobzel <zzzman@gmail.com> | 2020-08-28 18:15:46 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-28 18:15:46 -0400 |
commit | 55f99f4bcc45b1dc797982273e93f49fb58403c3 (patch) | |
tree | 7c79ae591a688bcdb9ed89e49aa02ee192fbad3a /src/client/views/collections/CollectionMenu.tsx | |
parent | 1536f8d6e5f44fd14954550e9bd670561727b417 (diff) |
added explicit annotation mode for videos. fixed annotation mode for webpages
Diffstat (limited to 'src/client/views/collections/CollectionMenu.tsx')
-rw-r--r-- | src/client/views/collections/CollectionMenu.tsx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/client/views/collections/CollectionMenu.tsx b/src/client/views/collections/CollectionMenu.tsx index f5d64ba0d..a41b5eaca 100644 --- a/src/client/views/collections/CollectionMenu.tsx +++ b/src/client/views/collections/CollectionMenu.tsx @@ -868,18 +868,6 @@ export class CollectionFreeFormViewChrome extends React.Component<CollectionMenu </Tooltip> : null} {!this.props.isOverlay || this.document.type !== DocumentType.WEB || this.isText || this.props.isDoc ? (null) : - <Tooltip key="hypothesis" title={<div className="dash-tooltip">Toggle between native iframe and annotation modes</div>} placement="bottom"> - <button className={"antimodeMenu-button"} key="hypothesis" - style={{ - backgroundColor: this.props.docView.layoutDoc.isAnnotating ? "121212" : undefined, - borderRight: "1px solid gray" - }} - onClick={() => this.props.docView.layoutDoc.isAnnotating = !this.props.docView.layoutDoc.isAnnotating}> - <FontAwesomeIcon icon={"edit"} size="lg" /> {/* ["fab", "hire-a-helper"]} size={"lg"} /> */} - </button> - </Tooltip> - } - {!this.props.isOverlay || this.document.type !== DocumentType.WEB || this.isText || this.props.isDoc ? (null) : this.urlEditor } {!this.isText ? |