$scope.showPopup = function () {
var myPopup = $ionicPopup.show({
title: 'Foo',
content: 'Bar'
});
$timeout(function() {
myPopUp.close();
}, 1000);
};
Here is a popup function
inside my controller.
And here is a part of index.html
<ion-nav-view animation="slide-left-right"></ion-nav-view>
Now when I use this animation i.e
slide-left-right then the popups have a white lined glitches above it in Android 4.2.2.
It appears perfectly if I use some other animation
. But if I prefer the above animation then there are glitches above the popup.
Will that be fixed?