Signed-off-by: eleven <looker_pc@163.com>
This commit is contained in:
eleven 2019-05-25 23:45:52 +08:00
Родитель eb2d057927
Коммит 89fe07b25f
2 изменённых файлов: 13 добавлений и 13 удалений

Просмотреть файл

@ -11,11 +11,11 @@ export class DialogSettings {
public respText: string;
public errMsg: string;
public logText: string;
public open= false;
public dialogForm= true;
public dialogLog= false;
public pending= false;
public onCloseFunction= undefined;
public open = false;
public dialogForm = true;
public dialogLog = false;
public pending = false;
public onCloseFunction = undefined;
constructor(actionWord = '', dialogTitle = '', dialogSubtitle = '', errMsg = '') {
this.actionWord = actionWord;

Просмотреть файл

@ -71,14 +71,14 @@ export class Node {
public name: string;
public path: string; // Path to element Ex, “GrandparentID/ParentId/ID”.
public children: Node[];
public lastChanged= 0; // Time last changed in seconds.
public progress= 0; // Should be an int from 0-100 for percentage
public progressMsg= ''; // Ex. “34/256” “25%” “calculating”
public state= State.NOT_STARTED;
public display= Display.NONE;
public message= ''; // Instructions for user
public log= ''; // Log from command
public disabled= false; // Use for blocking further actions
public lastChanged = 0; // Time last changed in seconds.
public progress = 0; // Should be an int from 0-100 for percentage
public progressMsg = ''; // Ex. “34/256” “25%” “calculating”
public state = State.NOT_STARTED;
public display = Display.NONE;
public message = ''; // Instructions for user
public log = ''; // Log from command
public disabled = false; // Use for blocking further actions
public actions: Action[];
constructor(name: string, path: string, children: any) {