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 = {
'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;