Log loading
This commit is contained in:
parent
239484c3bc
commit
99af3eb2b8
4 changed files with 39 additions and 8 deletions
|
@ -10,6 +10,8 @@ export component AppWindow inherits Window {
|
|||
callback chain-event <=> record.chain-event;
|
||||
callback update-record-offset(int);
|
||||
callback save-log;
|
||||
callback another-call;
|
||||
callback load-log;
|
||||
|
||||
update-record-offset(new-offset) => {
|
||||
record.offset = new-offset;
|
||||
|
@ -18,6 +20,7 @@ export component AppWindow inherits Window {
|
|||
in-out property record-events <=> record.events;
|
||||
in-out property record-offset <=> record.offset;
|
||||
in-out property<int> record-visible-time <=> record.visible-time;
|
||||
in-out property<bool> in-progress <=> record.in-progress;
|
||||
property<[string]> combo-spans: ["1 Hour", "4 Hours", "8 Hours", "24 Hours"];
|
||||
|
||||
title: "Aliveline";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue