|
@@ -126,7 +126,7 @@ var messageHandler = {
|
126
|
126
|
if (!popupEnabled)
|
127
|
127
|
return null;
|
128
|
128
|
|
129
|
|
- let dialog = $.prompt(
|
|
129
|
+ let dialog = new Impromptu(
|
130
|
130
|
APP.translation.generateTranslationHTML(messageKey, i18nOptions), {
|
131
|
131
|
title: this._getFormattedTitleString(titleKey),
|
132
|
132
|
persistent: false,
|
|
@@ -218,7 +218,7 @@ var messageHandler = {
|
218
|
218
|
classes.prompt += ` ${wrapperClass}`;
|
219
|
219
|
}
|
220
|
220
|
|
221
|
|
- twoButtonDialog = $.prompt(message, {
|
|
221
|
+ twoButtonDialog = new Impromptu(message, {
|
222
|
222
|
title: this._getFormattedTitleString(titleKey),
|
223
|
223
|
persistent: false,
|
224
|
224
|
buttons: buttons,
|