manolo / gwt-polymer-elements

Polymer Web Components for GWT. A collection of Material Design widgets for desktop and mobile.
Apache License 2.0
155 stars 49 forks source link

gwt-polymer framework does not work on ios 10 - any browser #133

Closed Leon74 closed 7 years ago

Leon74 commented 7 years ago

on ios 10 I dont get past the Polymer.importHref(..) I get the error from the screenshot screen shot 2016-09-16 at 11 50 24

Leon74 commented 7 years ago

reproducable by opening demo application (https://vaadin.github.io/gwt-polymer-elements/demo/#gwt/JavaApiWidget) on any browser in ios 10

Leon74 commented 7 years ago

https://github.com/webcomponents/webcomponentsjs/issues/617

looks like same issue

Leon74 commented 7 years ago

workaround is to use bower_components/webcomponentsjs/webcomponents-lite.js replacing bower_components/webcomponentsjs/webcomponents.js

simonmorley commented 7 years ago

Using the lite version also sorted for me temporarily. For others, I had to do via an override to get working in the bower.json

  "overrides": {
    "webcomponentsjs": {
      "main": [
        "webcomponents-lite.min.js"
      ]
    }
  },