Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

detached template and binding? #215

Open
ansorg opened this issue Apr 14, 2015 · 0 comments
Open

detached template and binding? #215

ansorg opened this issue Apr 14, 2015 · 0 comments

Comments

@ansorg
Copy link

ansorg commented Apr 14, 2015

Since IE does not like the within a it is advised to split this up in normal polymer usage, so this

<table>
<template id="irm" repeat="{{results}}">
    <tr >
        <td>{{Title}}</td>
    </tr>
</template>
</table>

becomes

<template id="irm">
    <table>
        <tr template repeat="{{results}}">
            <td>{{Title}}</td>
        </tr>
    </table>
</template>

Unfortunately this seems not work when using this plain TemplateBinding instead of the full Polymer. Will this be supported at some point?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant