diff options
author | bobzel <zzzman@gmail.com> | 2025-05-10 20:26:00 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-05-10 20:26:00 -0400 |
commit | b1bb206c73a0fbc4fb439cedd212565f7f85f4f8 (patch) | |
tree | 6eb38f1be57977c2c4bf91d11ba108bad8f3ad70 /src/client/documents/Documents.ts | |
parent | 534532aebbab49b00dc76ad6a0cf6c20368d818c (diff) |
changed how we corsProxy web pages to be simpler and work better. changed dragging off annotations after text selections to only create a text doc whent the drop target is the parent collection -- otherwise links are created.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 9b6acef7b..2df6f3e23 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1029,7 +1029,7 @@ export namespace Docs { const nwid = options._nativeWidth || undefined; const nhght = options._nativeHeight || undefined; if (!nhght && width && height && nwid) options._nativeHeight = (Number(nwid) * Number(height)) / Number(width); - return InstanceFromProto(Prototypes.get(DocumentType.WEB), new WebField(url || 'https://www.wikipedia.org/'), options); + return InstanceFromProto(Prototypes.get(DocumentType.WEB), new WebField(url || 'https://wikipedia.org/'), options); } export function HtmlDocument(html: string, options: DocumentOptions = {}) { |