Is there a way to declare a popup as a $scope object i.e. $scope.myPopup = $ionicPopup({ MyConfigStuffHere}) and then be able to open the popup by calling it elsewhere in the code i.e. $scope.myPopup.show()?
Whenever i’ve attempted this i get “$scope.myPopup.show() is not a method”
Or do you HAVE to declare the popup AND call the “show” method all at once? I would think this object could/should be reusable in such a manner.