refactor: alerts

isekai-main
Barış Soner Uşaklı 3 years ago
parent 0a6eeb933e
commit 621c142f8e

@ -243,7 +243,7 @@ define('forum/topic', [
span.html('').addClass('hidden');
}
if ($(window).scrollTop() > 300) {
app.removeAlert('bookmark');
alerts.remove('bookmark');
}
}

@ -28,14 +28,14 @@ define('messages', ['bootbox', 'translator', 'storage', 'alerts'], function (boo
if (!app.user.email) {
msg.message = '[[error:no-email-to-confirm]]';
msg.clickfn = function () {
app.removeAlert('email_confirm');
alerts.remove('email_confirm');
ajaxify.go('user/' + app.user.userslug + '/edit/email');
};
alerts.alert(msg);
} else if (!app.user['email:confirmed'] && !app.user.isEmailConfirmSent) {
msg.message = message || '[[error:email-not-confirmed]]';
msg.clickfn = function () {
app.removeAlert('email_confirm');
alerts.remove('email_confirm');
socket.emit('user.emailConfirm', {}, function (err) {
if (err) {
return alerts.error(err);

Loading…
Cancel
Save