Polymer Passing Properties To Child Elements In Firefox -


i've created simple example http://jsbin.com/yifekigo/21/edit. works in chrome , not in firefox/safari. work in firefox if change <nest-row mcols="{{mcols}}" y="{{y}}"></nest-row> <nest-row mcols="4" y="{{y}}"></nest-row>.

how can firefox , safari pass value of mcols nest-grid through nest-row?

edit: see scott's comment on answer use of domready workaround.

sadly, on firefox/safari/ie, dry polymer syntax not supported in main document. iow, must do:

polymer('nest-grid', {... 

instead of

polymer({... 

again, true calls in main document (which typically includes jsbin , friends). polymer elements in imports can use dry syntax on platforms.

sorry trouble.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -