Polymer应用程序无法在其他浏览器(如Firefox)中加载

时间:2014-12-22 14:12:13

标签: polymer

我使用Polymer创建了一个应用程序,它可以在Chrome中正常运行。但是,例如,在Firefox中加载应用程序时,我会看到一个空白页面。

我有相关的polyfills导入,如下面的代码所示。我错过了一些让它在其他浏览器中运行的东西吗?

Plunker:http://plnkr.co/edit/gBWxIdOUuizxFH2S5peQ?p=info

<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <script src="/bower_components/webcomponentsjs/webcomponents.js"></script>

    <link rel="import" href="/bower_components/core-header-panel/core-header-panel.html">
    <link rel="import" href="/bower_components/my-elements/my-appbar.html">
    <link rel="import" href="/bower_components/my-elements/my-content.html">
  </head>

  <body fullbleed vertical layout unresolved>
      <core-header-panel flex>
        <div class="core-header">
          <my-appbar></my-appbar>
        </div>
        <div class="content">
          <my-content></my-content>
        </div>
      </core-header-panel>
  </body>
</html>

0 个答案:

没有答案