From 8e4ca8e4742fbbfccea93bb243e02a7aeea8768f Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Fri, 11 Oct 2013 13:06:21 -0400 Subject: [PATCH] closes #397 --- public/src/modules/chat.js | 22 +++++++++++++++------- public/templates/footer.tpl | 2 +- public/themes/vanilla/style.less | 5 +++++ 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/public/src/modules/chat.js b/public/src/modules/chat.js index 4391b58cfc..0921f6d5a1 100644 --- a/public/src/modules/chat.js +++ b/public/src/modules/chat.js @@ -20,7 +20,7 @@ define(['taskbar'], function(taskbar) { module.modalExists = function(touid) { return $('#chat-modal-' + touid).length !== 0; } - + function checkStatus(chatModal, callback) { socket.emit('api:user.isOnline', chatModal.touid, function(data) { if(data.online !== chatModal.online) { @@ -35,7 +35,7 @@ define(['taskbar'], function(taskbar) { callback(data.online); }); } - + function checkOnlineStatus(chatModal) { if(chatModal.intervalId === 0) { chatModal.intervalId = setInterval(function() { @@ -43,12 +43,12 @@ define(['taskbar'], function(taskbar) { }, 1000); } } - + module.createModal = function(username, touid, callback) { - + var chatModal = $('#chat-modal').clone(), uuid = utils.generateUUID(); - + chatModal.intervalId = 0; chatModal.touid = touid; chatModal.username = username; @@ -61,7 +61,7 @@ define(['taskbar'], function(taskbar) { module.bringModalToTop(chatModal); } }); - + chatModal.find('#chat-with-name').html(username); chatModal.find('.close').on('click', function(e) { @@ -74,7 +74,7 @@ define(['taskbar'], function(taskbar) { chatModal.on('click', function(e) { module.bringModalToTop(chatModal); }); - + addSendHandler(chatModal); getChatMessages(chatModal, function() { @@ -85,9 +85,17 @@ define(['taskbar'], function(taskbar) { return chatModal; } + function center(chatModal) { + chatModal.css("position","absolute"); + chatModal.css("top", Math.max(0, (($(window).height() - $(chatModal).outerHeight()) / 2) + $(window).scrollTop()) + "px"); + chatModal.css("left", Math.max(0, (($(window).width() - $(chatModal).outerWidth()) / 2) + $(window).scrollLeft()) + "px"); + return chatModal; + } + module.load = function(uuid) { var chatModal = $('div[UUID="'+uuid+'"]'); chatModal.show(); + center(chatModal); module.bringModalToTop(chatModal); checkOnlineStatus(chatModal); } diff --git a/public/templates/footer.tpl b/public/templates/footer.tpl index 27d8a74458..39bdc9eca0 100644 --- a/public/templates/footer.tpl +++ b/public/templates/footer.tpl @@ -2,7 +2,7 @@ -