Reputation: 8519
I'm having trouble adjusting the pagination bar generated by the angular Material Design directive. In the documentation it says to add md-no-pagination(boolean) inside the which I tried but nothing happend...
You can try here, there a link to codePen. https://material.angularjs.org/latest/demo/tabs
Alternatively, is there a way to display the pagination on the right side? In the documentation there is only an attribute to center it...
Thanks a lot!!
Upvotes: 0
Views: 2760
Reputation: 1028
The md-no-pagination
property is working properly. I've modified the plunker on 1.0.5 and it's working. http://codepen.io/anon/pen/GoVqZN
Probably you are miss typing something or using false
instead true
.
<md-tabs md-no-pagination="true">
You can even use just the property, like this:
<md-tabs md-no-pagination>
true
is default value for this property.
Upvotes: 1