on chat leave close the modal

This commit is contained in:
barisusakli
2017-03-07 19:51:52 +03:00
parent f0d9bddd56
commit 1301fb1f34

View File

@@ -282,11 +282,17 @@ define('forum/chats', [
if (err) { if (err) {
return app.alertError(err.message); return app.alertError(err.message);
} }
if (parseInt(roomId, 10) === ajaxify.data.roomId) { if (parseInt(roomId, 10) === parseInt(ajaxify.data.roomId, 10)) {
ajaxify.go('user/' + ajaxify.data.userslug + '/chats'); ajaxify.go('user/' + ajaxify.data.userslug + '/chats');
} else { } else {
el.remove(); el.remove();
} }
require(['chat'], function (chat) {
var modal = chat.getModal(roomId);
if (modal.length) {
chat.close(modal);
}
});
}); });
}; };