Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following template:

{{#with invitation.meeting}}
  Meeting invitation for "{{topic}}" 
  {{#if location}}
    @ {{location}}
  {{/if}}
   ({{formatDate startsAt}})
{{/with}}

THe content for this template is an ember-data object.

There are occasions where the location property of this object is null which is why I added the if statement

{{#if location}}

The problem is that the if statement causes an error:

Uncaught Error: assertion failed: You need to provide an object and key to get.

I thought the if helper worked if the property at the path was null.

Can anyone see what I am doing wrong?

share|improve this question
2  
Can you provide a JSFiddle? You can use this as starting point: jsfiddle.net/pangratz666/2NHtA – pangratz Jul 3 '12 at 11:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.