diff options
author | bobzel <zzzman@gmail.com> | 2020-10-22 01:38:03 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-10-22 01:38:03 -0400 |
commit | b75fc9edafb72a6cf5b1e15a3d2b5300c053f92f (patch) | |
tree | 9446c2098862e86db32251a3ade1d0c5b2668320 /src/client/documents/Documents.ts | |
parent | 05257784ed7c0e6ed9ce5375cd5e3cccc04c7bec (diff) |
fixed webBoxes to switch URLS when hyperlink is clicked (and page is not cross-origin). fixed some undo navigation web stuff. fixed drag/drop to create anchor that bounds the original selection. fixed html clippings to not have a nativewith/height so that they reflow
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 d7c9af1a3..d7af88b72 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1101,7 +1101,7 @@ export namespace DocUtils { }); } ctor = Docs.Create.WebDocument; - options = { ...options, _fitWidth: true, _nativeWidth: 850, _width: 400, _height: 512, title: path, }; + options = { ...options, _fitWidth: true, _width: 400, _height: 512, title: path, }; } return ctor ? ctor(path, options) : undefined; } |