aboutsummaryrefslogtreecommitdiff
path: root/src/fields/Doc.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-19 19:58:57 -0400
committerbobzel <zzzman@gmail.com>2020-08-19 19:58:57 -0400
commit093b9b03528a2187ac71db0945a031a8298b8002 (patch)
tree2952c8157b6322e4997ae5774d7560f6448f3963 /src/fields/Doc.ts
parent9ab88617231edf79b8f1a85e997d02a04ced85fd (diff)
fixed errors caused by Doc symFields not being variable functions and thus not having 'this' bound correctly.
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r--src/fields/Doc.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts
index 0dcb8ab42..4797fb4cb 100644
--- a/src/fields/Doc.ts
+++ b/src/fields/Doc.ts
@@ -206,11 +206,11 @@ export class Doc extends RefField {
private [Self] = this;
private [SelfProxy]: any;
- public [FieldsSym](clear?: boolean) { return clear ? this.___fields = this.___fieldKeys = {} : this.___fields; }
- public [WidthSym]() { return NumCast(this[SelfProxy]._width); }
- public [HeightSym]() { return NumCast(this[SelfProxy]._height); }
- public [ToScriptString]() { return `DOC-"${this[Self][Id]}"-`; }
- public [ToString]() { return `Doc(${GetEffectiveAcl(this) === AclPrivate ? "-inaccessible-" : this.title})`; }
+ public [FieldsSym] = (clear?: boolean) => { return clear ? this.___fields = this.___fieldKeys = {} : this.___fields; }
+ public [WidthSym] = () => { return NumCast(this[SelfProxy]._width); }
+ public [HeightSym] = () => { return NumCast(this[SelfProxy]._height); }
+ public [ToScriptString] = () => { return `DOC-"${this[Self][Id]}"-`; }
+ public [ToString] = () => { return `Doc(${GetEffectiveAcl(this) === AclPrivate ? "-inaccessible-" : this.title})`; }
public get [LayoutSym]() { return this[SelfProxy].__LAYOUT__; }
public get [DataSym]() {
const self = this[SelfProxy];