(js) Allow to change the labels of Dialog.confirm

feature/saveSortContacts
Francis Lachapelle 2015-08-06 16:19:42 -04:00
parent 9465fbad4b
commit eb543ce14f
2 changed files with 5 additions and 4 deletions

View File

@ -31,12 +31,12 @@
* @param {string} content
* @returns a promise that resolves if the user has clicked on the 'OK' button
*/
Dialog.confirm = function(title, content) {
Dialog.confirm = function(title, content, options) {
var confirm = this.$modal.confirm()
.title(title)
.content(content)
.ok(l('OK'))
.cancel(l('Cancel'));
.ok((options && options.ok)? options.ok : l('OK'))
.cancel((options && options.cancel)? options.cancel : l('Cancel'));
return this.$modal.show(confirm);
};

View File

@ -99,7 +99,8 @@
}
function confirmDelete(card) {
Dialog.confirm(l('Warning'),
l('Are you sure you want to delete the card of %{0}?', card.$fullname()))
l('Are you sure you want to delete the card of %{0}?', card.$fullname()),
{ok: l('Yes'), cancel: l('No')})
.then(function() {
// User confirmed the deletion
card.$delete()