From f8e953ed80b7c984f83a17cf5001d65e66131133 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 12 Apr 2016 15:11:45 +0000 Subject: [PATCH] Remove unneeded expand on focus event, fixes dropdown opens then closes when clicking on the owner --- calendar/js/et2_widget_owner.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/calendar/js/et2_widget_owner.js b/calendar/js/et2_widget_owner.js index 0c4ba46ab6..78bab8b0e1 100644 --- a/calendar/js/et2_widget_owner.js +++ b/calendar/js/et2_widget_owner.js @@ -67,9 +67,6 @@ var et2_calendar_owner = (function(){ "use strict"; return et2_taglist_email.ext var widget = this; // onChange fired when losing focus, which is different from normal this._oldValue = this.taglist.getValue(); - this.$taglist - .on('focus', function() {widget.taglist.expand();}); - return true; },