Guest User

Untitled

a guest
Oct 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {{#collection contentBinding="Pxweb.DimensionController" tagName="div"}}
  2. {{content.name}}
  3. {{#each content.values tagName="select"}}
  4. {{content}}
  5. {{/each}}
  6. {{/collection}}
  7.  
  8.  
  9. Pxweb.DimensionController = SC.ArrayProxy.create({
  10. content:[],
  11.  
  12. load:function(dimensions){
  13. this.set("content",[]);
  14. this.pushObjects(dimensions);
  15. }
  16. });
Add Comment
Please, Sign In to add comment