Hey folks, I would like to ask about this bug:
https://github.com/PolymerElements/iron-icons/issues/18 Is there any workaround available? Should I delve into further debugging? I have verified with a very simple example (see below) that merely async-ly initializing my custom elements does not reproduce the problem. On the other hand, it's sort of bringing my work to a bit of a grinding halt at the moment.... Insights greatly appreciated, thank you! Ihab <html> <head> <script src="../bower_components/webcomponentsjs/webcomponents.js"></script> <link rel="import" href="../bower_components/polymer/polymer.html"> <link rel="import" href="../bower_components/iron-icons/iron-icons.html"> </head> <body> <dom-module id="my-wrapper"> <template> <iron-icon icon="arrow-back"></iron-icon> </template> </dom-module> <my-wrapper></my-wrapper> <script type="text/javascript"> "use strict"; window.setTimeout(function() { Polymer({ is: 'my-wrapper', }); }, 5000); </script> </body> </html> -- Ihab A.B. Awad, Palo Alto, CA Follow Polymer on Google+: plus.google.com/107187849809354688692 --- You received this message because you are subscribed to the Google Groups "Polymer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/CAG7xX7oX%2BhjgHaX%3DR-_5R9ipsxewFXK9nxHu5w51Co8-RJH5vQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
