diff options
| author | yipstanley <stanley_yip@brown.edu> | 2019-06-18 10:52:10 -0400 |
|---|---|---|
| committer | yipstanley <stanley_yip@brown.edu> | 2019-06-18 10:52:10 -0400 |
| commit | 66d4cc94bcc69f590d90dd35823f93b8e2fb90d8 (patch) | |
| tree | d10495932d5ef7735f562c17f079cce9eff672f5 /src/client/views/pdf/Page.tsx | |
| parent | c50ba1c4cc01d5cd085dee0dae6f633164efeb80 (diff) | |
selection fixes
Diffstat (limited to 'src/client/views/pdf/Page.tsx')
| -rw-r--r-- | src/client/views/pdf/Page.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/pdf/Page.tsx b/src/client/views/pdf/Page.tsx index bb87ec9d4..a19b64eda 100644 --- a/src/client/views/pdf/Page.tsx +++ b/src/client/views/pdf/Page.tsx @@ -402,7 +402,8 @@ export default class Page extends React.Component<IPageProps> { let boundingRect = this._textLayer.current.getBoundingClientRect(); for (let i = 0; i < clientRects.length; i++) { let rect = clientRects.item(i); - if (rect) { + if (rect && rect.width !== this._textLayer.current.getBoundingClientRect().width && rect.height !== this._textLayer.current.getBoundingClientRect().height) { + console.log(rect); let annoBox = document.createElement("div"); annoBox.className = "pdfViewer-annotationBox"; // transforms the positions from screen onto the pdf div |
