You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was an HTMLImports bug that should be fixed now. At the moment when
ShadowDOM polyfill is used, all stylesheets are specially loaded so that ^
and ^^ rules can be fixed. Since almost no stylesheets will have ^ and ^^
right now, we're going to make this shimming opt-in ( https://github.com/Polymer/platform-dev/issues/4).
These issues should be cleaned up in the next polymer release.
I forked the Reveal.js (https://github.com/hakimel/reveal.js) repository to play around with Polymer.
I was following the steps from Getting Started (http://www.polymer-project.org/getting-started.html).
When I add a script for platform.js, I start getting a 404 on one of the style sheet's imports.
The head of my index.html file look like this:
If I run the project like this, I get the following error:
GET http://localhost:8000/css/theme/url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic) 404 (Not Found) Node.js:341
This is coming from the 'css/theme/default.css' style sheet:
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
If I comment out the platform.js script this error does not happen, but of course, I don't get Polymer greatness then either.
This is occurring on Chrome 32.0.1700.102 m on Windows 8.1. With the Enable HTML Import flag set to true or false.
The text was updated successfully, but these errors were encountered: