From b18392ccb5fb785d19afafa2c4f6c31de9da5b5f Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 15 Mar 2014 16:49:19 -0400 Subject: [PATCH] Don't focus datepicker on popups --- js/crm.ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/crm.ajax.js b/js/crm.ajax.js index a90e4f7d97..34ca8dc65c 100644 --- a/js/crm.ajax.js +++ b/js/crm.ajax.js @@ -398,7 +398,7 @@ }); } // For convenience, focus the first field - $('input[type=text], textarea, select', this).filter(':visible').first().focus(); + $('input[type=text], textarea, select', this).filter(':visible').first().not('.dateplugin').focus(); }); return widget; }; -- 2.25.1