使用不在IE中工作的模板生成纸张选项卡

时间:2014-11-18 17:00:16

标签: polymer

以下代码在Chrome和Firefox中运行良好,但在IE中,我必须单击选项卡两次以使标签更改或响应单击。我认为它可能与在模板中创建纸质标签有关。是否有一种解决方法可以让它在IE中正常运行?我正在运行0.51。

<paper-tabs id="papertabs" selected="{{selected}}">

  <paper-tab name="all">All</paper-tab>

   <template id="papertabstemplate" repeat="{{cat in categories}}">
        <template if="{{ cat.group == group }}">
            <paper-tab name="{{cat.category}}">{{cat.category}}</paper-tab>
        </template>
   </template>

</paper-tabs>

0 个答案:

没有答案
相关问题