sam_k
sam_k

Reputation: 6023

$ionicPopup are not showing at botton

I am new at ionic framework and angular Js. I am using Confirm style ionic popup, why buttons are not showing in the bottom of the popup.

Here is the updated codepen.

[http://codepen.io/skpatel/pen/ZGwGOO][1]

Please help me, I am having this issue since a long. Any help would be appreciated.

Upvotes: 0

Views: 728

Answers (1)

Karan Kumar
Karan Kumar

Reputation: 2665

Here: I have updated the code pen, though everything is correct but sometimes the popup works differently. All you need to do is

.popup-body {
    padding: 10px;
    overflow: auto;
    height:100%; 
} 

EDIT: Well the functionality that you want should be done in a "$ionicModal", but since you want to do it in "$ionicPopup". PS: you shouldn't use ion-content in a pop-up. Just a info.

I have updated the Code-Pen:

Upvotes: 1

Related Questions