juicy-table-repeat

Polymer implementation, does not work in IE

Dom-repeat doesn't work in tables in IE (issue #1567)

<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>Price</th>
        </tr>
    </thead>
    <tbody>
        <template is="dom-repeat" items="{{model.products}}">
            <tr>
                <td>{{item.name}}</td>
                <td>
                    <span>{{item.price}}</span>$
                </td>
            </tr>
        </template>
    </tbody>
</table>

Juicy workaround to make same table work in IE

<juicy-table-repeat rows="{{model.products}}">
    <table class="table">
        <thead>
            <tr>
                <th>Name</th>
                <th>Price</th>
            </tr>
        </thead>
        <tbody></tbody>
    </table>
    <template is="dom-template" class="row-template">
        <table>
            <tr>
                <td>{{item.name}}</td>
                <td>
                    <span>{{item.price}}</span>$
                </td>
            </tr>
        </table>
    </template>
</juicy-table-repeat>