From a397de82d26d9fc1df8b8af095e0e82bbbfd79f5 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Thu, 10 Mar 2016 17:56:44 +0000 Subject: [PATCH] Keyboard navigation was fixed in parent --- calendar/js/et2_widget_owner.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/calendar/js/et2_widget_owner.js b/calendar/js/et2_widget_owner.js index d3dd2b9cf1..f4cf6e4e19 100644 --- a/calendar/js/et2_widget_owner.js +++ b/calendar/js/et2_widget_owner.js @@ -68,18 +68,7 @@ var et2_calendar_owner = (function(){ "use strict"; return et2_taglist_email.ext // onChange fired when losing focus, which is different from normal this._oldValue = this.taglist.getValue(); this.$taglist - .on('focus', function() {widget.taglist.expand();}) - // Since not using autoSelect, avoid some errors with selection starting - // with the group - .on('load expand', function() { - window.setTimeout(function() { - if(widget && widget.div) - { - widget.div.find('.ms-res-item-active') - .removeClass('ms-res-item-active'); - } - },1); - }); + .on('focus', function() {widget.taglist.expand();}); return true;