1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* @api
*/
define([
'jquery',
'underscore',
'jquery/ui',
'Magento_Ui/js/modal/confirm',
'mage/translate'
], function ($, _) {
'use strict';
$.widget('mage.alert', $.mage.confirm, {
options: {
modalClass: 'confirm',
title: $.mage.__('Attention'),
actions: {
/**
* Callback always - called on all actions.
*/
always: function () {}
},
buttons: [{
text: $.mage.__('OK'),
class: 'action-primary action-accept',
/**
* Click handler.
*/
click: function () {
this.closeModal(true);
}
}]
},
/**
* Close modal window.
*/
closeModal: function () {
this.options.actions.always();
this.element.bind('alertclosed', _.bind(this._remove, this));
return this._super();
}
});
return function (config) {
return $('<div></div>').html(config.content).alert(config);
};
});