lint compliance

pull/1/head
yflory 6 years ago
parent 7666a008d7
commit caf36cb3bf

@ -19,7 +19,7 @@ define([
// Display the notification
$(el).find('.cp-notification-content').addClass("cp-clickable");
$(el).find('.cp-notification-content p')
.html(Messages._getKey('friendRequest_notification', [msg.content.displayName])
.html(Messages._getKey('friendRequest_notification', [msg.content.displayName]))
.click(function () {
UIElements.displayFriendRequestModal(common, data);
});
@ -29,7 +29,7 @@ define([
var content = data.content;
var msg = content.msg;
$(el).find('.cp-notification-content p')
.html(Messages._getKey('friendRequest_accepted', [msg.content.displayName])
.html(Messages._getKey('friendRequest_accepted', [msg.content.displayName]));
$(el).find('.cp-notification-dismiss').css('display', 'flex');
};
@ -37,7 +37,7 @@ define([
var content = data.content;
var msg = content.msg;
$(el).find('.cp-notification-content p')
.html(Messages._getKey('friendRequest_declined', [msg.content.displayName])
.html(Messages._getKey('friendRequest_declined', [msg.content.displayName]));
$(el).find('.cp-notification-dismiss').css('display', 'flex');
};

@ -5,8 +5,7 @@ define([
'/common/common-ui-elements.js',
'/common/notifications.js',
'/common/hyperscript.js',
'/customize/messages.js'
], function ($, Util, UI, UIElements, Notifications, h, Messages) {
], function ($, Util, UI, UIElements, Notifications, h) {
var Mailbox = {};
Mailbox.create = function (Common) {

@ -991,7 +991,7 @@ MessengerUI, Messages) {
}
refresh();
},
onViewed: function (data) {
onViewed: function () {
refresh();
}
});

Loading…
Cancel
Save