From 674768845b985d6b37845bbe3bd99166b60a2289 Mon Sep 17 00:00:00 2001 From: Deon George Date: Mon, 23 Dec 2024 15:21:23 +1100 Subject: [PATCH] When saving frame, include date --- load/page.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/load/page.js b/load/page.js index 778f759..e888d69 100644 --- a/load/page.js +++ b/load/page.js @@ -1344,10 +1344,11 @@ function Page(debug) { var page = { 'version': 2, - 'attrs': p.attrs, - 'cost': p.cost, - 'key': p.key, - 'content': p.raw, + 'attrs': this.attrs, + 'cost': this.cost, + 'key': this.key, + 'date': this.__properties__.date, + 'content': this.raw, }; var body = LZString.compressToBase64(JSON.stringify(page))+FRAMES_EOF_MARKER;