Skip to content
Snippets Groups Projects
Commit 970b54d1 authored by qsm-odoo's avatar qsm-odoo
Browse files

[IMP] web: alert/confirm dialogs default titles

Add "Alert" and "Confirmation" as default titles for
alert and confirm dialogs
parent 7d70000a
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,7 @@ Dialog.alert = function (owner, message, options) {
$content: $('<div>', {
text: message,
}),
title: _t("Alert"),
}, options)).open();
};
......@@ -182,6 +183,7 @@ Dialog.confirm = function (owner, message, options) {
$content: $('<div>', {
text: message,
}),
title: _t("Confirmation"),
}, options)).open();
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment