Add new modal type

pull/1/head
yflory 2019-09-20 15:26:58 +02:00
parent 0276858645
commit 3a76e84286
1 changed files with 24 additions and 0 deletions

View File

@ -551,6 +551,30 @@ define([
});
};
UI.proposal = function (content, cb) {
var buttons = [{
name: Messages.friendRequest_later,
onClick: function () {},
keys: [27]
}, {
className: 'primary',
name: Messages.friendRequest_accept,
onClick: function () {
cb(true);
},
keys: [13]
}, {
className: 'primary',
name: Messages.friendRequest_decline,
onClick: function () {
cb(false);
},
keys: [[13, 'ctrl']]
}];
var modal = dialog.customModal(content, {buttons: buttons});
UI.openCustomModal(modal);
};
UI.log = function (msg) {
Alertify.success(Util.fixHTML(msg));
};