mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-04 21:15:55 +01:00
vertically centering modal when opened
This commit is contained in:
@@ -244,7 +244,7 @@ define('chat', ['taskbar', 'string', 'sounds', 'forum/chats'], function(taskbar,
|
||||
|
||||
module.center = function(chatModal) {
|
||||
chatModal.css("left", Math.max(0, (($(window).width() - $(chatModal).outerWidth()) / 2) + $(window).scrollLeft()) + "px");
|
||||
chatModal.css("top", "0px");
|
||||
chatModal.css("top", $(window).height() / 4 - $(chatModal).outerHeight() / 2);
|
||||
chatModal.css("zIndex", 2000);
|
||||
chatModal.find('#chat-message-input').focus();
|
||||
return chatModal;
|
||||
|
||||
Reference in New Issue
Block a user