I'm using angularjs and I want to dynamically define a button-bar. Something like this:
<div class="bar bar-subheader" ng-show="tournament.gameTableCreated">
<div class="button-bar">
<div ng-repeat="category in categories | orderBy : 'name' track by $id(category)"
type="item-text-wrap">
<button class="button button-positive" ng-click="showAndHide(category.name)">{{category.name}}</button>
</div>
</div>
</div>
The button bar works fine, but button-bar class is not applied and buttons are not resized according to the screen width.
Plunker added: http://plnkr.co/edit/axML5fG9ht4boLF2tsoV
Any idea how to deal with it?
Thanks in advance
<div class="button-bar">only.