-
Notifications
You must be signed in to change notification settings - Fork 292
Development
Benny Neugebauer edited this page May 9, 2018
·
1 revision
Create a modal window
amplify.publish(z.event.WebApp.WARNING.MODAL, z.viewModel.ModalsViewModel.TYPE.CONFIRM, {
action: () => this.exportBackup(),
preventClose: true,
text: {
action: z.l10n.text(z.string.backupErrorAction),
message: isBackupImportError ? z.l10n.text(z.string.backupImportGenericErrorSecondary) : error.message,
title: isBackupImportError
? z.l10n.text(z.string.backupImportGenericErrorHeadline)
: z.l10n.text(z.string.backupExportGenericErrorHeadline),
},
});