So, I have this code:
{{#if isClient}}
{{view Ember.Select
value=country
content=options.country
prompt='Please select a country'}}
{{/if}}
Which works wonderfully at load because isClient
defaults to true. However, when I set isCLient
to false, I get this error:
Cannot read property 'selectedIndex' of undefined
Anyone with a better understanding of the underlying code have any ideas here?