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.

In cases where binding isn't needed, we can use {{unbound someProperty}}, but is there a way to achieve the same effect with tag attributes? As I understand it, our only option is bindAttr such as:

<img {{bindAttr src="thumbpath"}} />

Assuming 100+ images on the screen, and a somewhat frequent re-rendering (of the entire layout- not just the images), would there be any performance benefit in an unbound version?

share|improve this question

1 Answer

up vote 15 down vote accepted

Because Ember doesn't need to track unbound values, you can actually just do this:

<img src="{{unbound thumbpath}}" />

And yes, there are performance benefits to using unbound values.

share|improve this answer
Perfect! Thanks Dan. – Jed Apr 10 '12 at 16:26
Glad to help, Jed! – Dan Gebhardt Apr 10 '12 at 18:18

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.