Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Make start and end tag of md-optgroup consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stexxen authored and Marcy Sutton committed Mar 16, 2015
1 parent 6d6c79b commit 61245b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/select/demoOptionGroups/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<md-select ng-model="favoriteTopping" placeholder="Favorite Topping">
<md-optgroup label="Meats">
<md-option ng-value="topping.name" ng-repeat="topping in toppings | filter: {category: 'meat' }">{{topping.name}}</md-option>
</md-option-group>
</md-optgroup>
<md-optgroup label="Veggies">
<md-option ng-value="topping.name" ng-repeat="topping in toppings | filter: {category: 'veg' }">{{topping.name}}</md-option>
</md-option-group>
</md-optgroup>
</md-select>
<p class="result">{{ favoriteTopping ? 'Your favorite topping is ' + favoriteTopping : 'Please select a topping'}}</p>
</div>
Expand Down

0 comments on commit 61245b7

Please sign in to comment.