I am trying to get a modal to pop up when my app loads.
The modal works fine on click but when I try to get it to pop up automatically using;
$ionicPlatform.ready(function () {
$scope.openModal();
});
It doesn’t do anything. I just get a blank page.
What am I doing wrong? Or is there a better solution to having modals pop up on load?