I have a dropdown menu and would like to have the options all have the same class, how is this done using AngularJS?
<select options-class="rules-option" ng-init="rule.actionId" ng-class="rules-option" ng-model="rule.selectedAction" ng-options="team.name for team in teams track by team.id">
<option value="">Select Team</option>
</select>
The above code doesn't appear to set classname of any of the generated options