Removed extraneous merge files and adde new line to dialog-content

This commit is contained in:
David Slater 2016-08-09 15:30:54 -07:00
Родитель bf0c1e254a
Коммит 66d58425b7
2 изменённых файлов: 1 добавлений и 38 удалений

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

@ -171,4 +171,4 @@ export class DialogContent {
}
return fmtString;
}
}
}

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

@ -1,37 +0,0 @@
/*
Object for controlling dialog metadata is passed to a vt-dialog component to
sychronize behavior regarding modals, loading screens, buttons and actions.
*/
export class DialogSettings {
public actionWord: string;
public actionFunction: any;
public dialogTitle: string;
public dialogSubtitle: string;
public beforeNameRespText: string;
public afterNameRespText: string;
public openModal= false;
public dialogForm= true;
public dialogLog= false;
public pending= false;
public constructor(actionWord= '', actionFunction= undefined, dialogTitle= '',
dialogSubtitle= '') {
this.actionWord = actionWord;
this.actionFunction = actionFunction;
this.dialogTitle = dialogTitle;
this.dialogSubtitle = dialogSubtitle;
}
public startPending() {
this.pending = true;
}
public endPending() {
this.pending = false;
}
public setMessage(before, after) {
this.beforeNameRespText = before;
this.afterNameRespText = after;
}
}