From 5a19ff3f6aaaf0f7abec6c32eada5e883b6ff334 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 27 Aug 2013 16:16:52 +0530 Subject: [PATCH] [fix] [minor] set z-index of communication composer autocomplete field --- public/js/wn/views/communication.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/js/wn/views/communication.js b/public/js/wn/views/communication.js index 2df34aaa9c..75f91d4a4f 100644 --- a/public/js/wn/views/communication.js +++ b/public/js/wn/views/communication.js @@ -345,6 +345,10 @@ wn.views.CommunicationComposer = Class.extend({ } }); }, + open: function(event, ui) { + var zindex = cint(me.dialog.$wrapper.css("z-index")) + 1 + $(this).autocomplete("widget").css("z-index", zindex); + }, focus: function() { // prevent value inserted on focus return false;