From 93c76dd8785824cee99bffc51535a48173d6940f Mon Sep 17 00:00:00 2001 From: nathangray Date: Wed, 7 Sep 2016 10:03:22 -0600 Subject: [PATCH] No longer need to update nm owner filterheader, since we changed it to a plain header --- calendar/js/app.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/calendar/js/app.js b/calendar/js/app.js index 8038e506dc..a2b8c1a2cf 100644 --- a/calendar/js/app.js +++ b/calendar/js/app.js @@ -2915,20 +2915,6 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend( widget.set_select_options(widget.options.select_options); widget.set_value(widget.getValue()); - // If updating owner, update listview participants as well - // This lets us _add_ to the options, normal nm behaviour will replace. - if(field == 'owner') - { - try { - var participant = app.classes.calendar.views.listview.etemplates[0].widgetContainer.getWidgetById('nm').getWidgetById('participant'); - if(participant) - { - participant.options.select_options = widget.options.select_options; - participant.set_select_options(widget.options.select_options); - } - } catch(e) {debugger;} - } - app.calendar.state_update_in_progress = in_progress; } }