Hello everybody
I would like how to add param with $ionicPopup on a templateUrl ?
I want to display a list with $ionicPopup.show
And it’s possible to change popup size ?
Thank a lot
Hello everybody
I would like how to add param with $ionicPopup on a templateUrl ?
I want to display a list with $ionicPopup.show
And it’s possible to change popup size ?
Thank a lot
I don’t understand what you mean about using a param with a template URL.
Lists : Just put a list in the template code
Size : It’s just CSS.
.popup {
width: 400px;
height: 350px;
}
Sample : http://codepen.io/calendee/pen/ohzdm
changing size of the popup window does not work for width with .popup class in css file.
height seems to be applied though…
.popup {
width: 1200px;
height: 350px;
}
.popup {
width: 1200px !important;
height: 350px;
}
This works for me
but I can’t understand how to implement css in angular js for $ionicPopup