When saving frame, include date

This commit is contained in:
Deon George 2024-12-23 15:21:23 +11:00
parent bf47e44186
commit 674768845b

View File

@ -1344,10 +1344,11 @@ function Page(debug) {
var page = { var page = {
'version': 2, 'version': 2,
'attrs': p.attrs, 'attrs': this.attrs,
'cost': p.cost, 'cost': this.cost,
'key': p.key, 'key': this.key,
'content': p.raw, 'date': this.__properties__.date,
'content': this.raw,
}; };
var body = LZString.compressToBase64(JSON.stringify(page))+FRAMES_EOF_MARKER; var body = LZString.compressToBase64(JSON.stringify(page))+FRAMES_EOF_MARKER;