diff --git a/README.md b/README.md index 35d687f..e67ad43 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ but here are a few examples of "before"/"after" to whet your appetite: ```hbs {{site-header user=this.user class=(if this.user.isAdmin "admin")}} -{{#super-select selected=this.user.country as |s|}} +{{#super-select selected=this.user.country as |option|}} {{#each this.availableCountries as |country|}} - {{#s.option value=country}}{{country.name}}{{/s.option}} + {{#option value=country}}{{country.name}}{{/s.option}} {{/each}} {{/super-select}} ```