Hi,
I just found polymer and started to play with it. I'm trying to add polymer-ui-weather to my test page and it seems to be broken.
My test project is under localhost/~rvasicek/polymer-test/ and index.html contain
<!DOCTYPE html><html>
<head>
<script src="bower_components/platform/platform.js"></script>
<link rel="import"
href="bower_components/polymer-ui-weather/polymer-ui-weather.html">
</head>
<body>
<polymer-ui-weather></polymer-ui-weather>
</body>
</html>
Although in polymer-ui-weather.css in :host I can find
background-image: url(images/glass.png);
the browser reports after loading different value for element background image
background-image: url('bower_components/polymer-ui-weather/bower_components/polymer-ui-weather/images/glass.png');
The same situation is with the used images...
Am I doing something wrong or it is a bug? I'm using Google Chrome 35.0.1916.86 beta on Mac and Polymer version 0.2.3.
Regards,
Roman