Tracker CRM view fixes:

- Do not lose called by when submitting, fixes tracker CRM view switching to all tickets when changing single/multi queue
- Fix js error using sidebox toolbar
- Fix wrong selectbox options in tracker nm when there are no rows for the entry
This commit is contained in:
Nathan Gray 2015-09-28 17:05:35 +00:00
parent b49a967cf1
commit a6d933e3ed

View File

@ -51,7 +51,7 @@ app.classes.addressbook = AppJS.extend(
// r49769 let's CRM view run under currentapp == "addressbook", which causes
// app.addressbook.et2_ready called before app.infolog.et2_ready and therefore
// app.addressbook.et2 would point to infolog template, if we not stop here
if (name.match(/^infolog\./)) return;
if (name.match(/^infolog|tracker\./)) return;
// call parent
this._super.apply(this, arguments);