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

Polymer 其他浏览器(如Firefox)中未加载应用程序,polymer,Polymer,我已经创建了一个应用程序使用聚合物和它的作品很好的铬,这是预期的。然而,当在Firefox中加载应用程序时,我会看到一个空白页面 我有polyfills的相关导入,您可以在下面的代码中看到。我是否错过了一些让它在其他浏览器中工作的东西 普朗克: 能否将组件的代码放入Plunker或类似可访问的站点?我曾尝试在Firefox中打开我的一个简单Plunker,它在Firefox上工作……我创建了一个Plunker(),它的加载似乎很好,但是当我在本地服务器上运行它时,我在Firefox中仍然会看到

我已经创建了一个应用程序使用聚合物和它的作品很好的铬,这是预期的。然而,当在Firefox中加载应用程序时,我会看到一个空白页面

我有polyfills的相关导入,您可以在下面的代码中看到。我是否错过了一些让它在其他浏览器中工作的东西

普朗克:



能否将组件的代码放入Plunker或类似可访问的站点?我曾尝试在Firefox中打开我的一个简单Plunker,它在Firefox上工作……我创建了一个Plunker(),它的加载似乎很好,但是当我在本地服务器上运行它时,我在Firefox中仍然会看到一个空白页。你在Firefox控制台上看到任何错误吗?改变对象的[[Prototype]]会导致你的代码运行非常缓慢;而是使用object.create webcomponents.js:6008和TypeError:controller是未定义的polymer.js:10707创建具有正确初始[[Prototype]]值的对象
<!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>