diff options
author | bobzel <zzzman@gmail.com> | 2025-04-08 14:56:44 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-04-08 14:56:44 -0400 |
commit | dd5c4e9b427196f8b0a34774a4667cfcaf6c8edf (patch) | |
tree | 7528b82aedfad05e0e9335c22068bac6608b21f6 /src/client/documents/DocUtils.ts | |
parent | d60734c4cdd8fe64d50e3de32182cc6b04afc747 (diff) |
change isLightbox to be a datadoc flag.
Diffstat (limited to 'src/client/documents/DocUtils.ts')
-rw-r--r-- | src/client/documents/DocUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/DocUtils.ts b/src/client/documents/DocUtils.ts index a657b673a..f5eee84aa 100644 --- a/src/client/documents/DocUtils.ts +++ b/src/client/documents/DocUtils.ts @@ -578,7 +578,7 @@ export namespace DocUtils { Docs.Create.FreeformDocument([], { _width: NumCast(layoutDoc._width) + 10, _height: Math.max(NumCast(layoutDoc._height), NumCast(layoutDoc._width) + 10), - _isLightbox: true, + isLightbox: true, _layout_fitWidth: true, title: StrCast(doc.title) + ' [Portal]', }), |