when u drag a chat window it comes to front

This commit is contained in:
Baris Usakli
2013-05-22 17:45:03 -04:00
parent c7dcbb8ab2
commit 45e92b0b8d

View File

@@ -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){