From 45e92b0b8d1d92159db2cc5f604207dbb1454742 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Wed, 22 May 2013 17:45:03 -0400 Subject: [PATCH] when u drag a chat window it comes to front --- public/templates/topic.tpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/templates/topic.tpl b/public/templates/topic.tpl index 5fa8fa17a6..fc14592931 100644 --- a/public/templates/topic.tpl +++ b/public/templates/topic.tpl @@ -325,7 +325,11 @@ var chatModal = $('#chat-modal').clone(); chatModal.attr('id','chat-modal-'+touid); chatModal.appendTo($('body')); - chatModal.draggable(); + chatModal.draggable({ + start:function(){ + bringModalToTop(chatModal); + } + }); chatModal.find('#chat-with-name').html(username); chatModal.find('.close').on('click',function(e){