In an AngularJS app, whenever an ng-repeat produces something like this:
<div>
<button>Alice</button>
</div>
<div>
<button>Bob</button>
</div>
<div>
<button>Jennifer</button>
</div>
I would like for all buttons to have the same width, which would be the width of whichever button is the widest, determined by the length of the caption it contains. Can this be done with pure AngularJS, and without importing jQuery just for this?

