diff options
author | bobzel <zzzman@gmail.com> | 2020-09-11 18:39:36 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-11 18:39:36 -0400 |
commit | 1df562964b4237edf024c1148f5eed6a23245ad7 (patch) | |
tree | c2e60b880292352f27e6e3b9f4337142c7d7c5db /src | |
parent | 16a4f44d88f336362248392ceb5370620b62b70d (diff) |
marked emptyWebpage as a template
Diffstat (limited to 'src')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index c2c9892be..b1b1ea74f 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -453,7 +453,7 @@ export class CurrentUserUtils { { _width: 250, _height: 250, title: "container", system: true, cloneFieldFilter: new List<string>(["system"]) }); } if (doc.emptyWebpage === undefined) { - doc.emptyWebpage = Docs.Create.WebDocument("", { title: "webpage", _nativeWidth: 850, _height: 512, _width: 400, useCors: true, system: true, cloneFieldFilter: new List<string>(["system"]) }); + doc.emptyWebpage = Docs.Create.WebDocument("", { title: "webpage", _nativeWidth: 850, isTemplateDoc: true, _height: 512, _width: 400, useCors: true, system: true, cloneFieldFilter: new List<string>(["system"]) }); } if (doc.activeMobileMenu === undefined) { this.setupActiveMobileMenu(doc); |