SlideBox : GetByHandle not working in modal

After migration of …13 to …14’m having the same problem in $ionicTabsDelegate.$getByHandle within the modal.

How could I not do without, so resolved:

function _getCreateTicketTabs() {
     return _.find($ionicTabsDelegate._instances, function (tab) {
         return tab.$$delegateHandle === "createTicketTabs-handle";
     });
     // return $ionicTabsDelegate.$getByHandle("createTicketTabs-handle");
 }
1 Like