diff options
author | bob <bcz@cs.brown.edu> | 2019-08-27 15:52:25 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-08-27 15:52:25 -0400 |
commit | 656a08a130124870c9f652f7b1529b2b496cdac7 (patch) | |
tree | 82243f21c9e2721baedfd8da4e67977a25e8c49d /src/client/views/PreviewCursor.tsx | |
parent | 34e0b1cf34474ec6765e212b6a35defefbfb49c9 (diff) |
lint fixes.
Diffstat (limited to 'src/client/views/PreviewCursor.tsx')
-rw-r--r-- | src/client/views/PreviewCursor.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PreviewCursor.tsx b/src/client/views/PreviewCursor.tsx index d8e161ab6..1329dc02c 100644 --- a/src/client/views/PreviewCursor.tsx +++ b/src/client/views/PreviewCursor.tsx @@ -51,7 +51,7 @@ export class PreviewCursor extends React.Component<{}> { // tests for URL and makes web document let re: any = /^https?:\/\//g; if (re.test(e.clipboardData.getData("text/plain"))) { - const url = e.clipboardData.getData("text/plain") + const url = e.clipboardData.getData("text/plain"); PreviewCursor._addDocument(Docs.Create.WebDocument(url, { title: url, width: 300, height: 300, // nativeWidth: 300, nativeHeight: 472.5, |