Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- | 1 <!-- |
| 2 // Copyright 2014 The Chromium Authors. All rights reserved. | 2 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <link rel="import" | 6 <import src="import" href="../../framework/sky-element/sky-element.sky" as="SkyE lement" /> |
|
esprehn
2014/11/03 20:19:26
Looks like a bug.
abarth-chromium
2014/11/03 20:25:19
Fixed
| |
| 7 href="../../framework/sky-element/sky-element.sky" | 7 <import src="city-data-service.sky" as="CityDataService" /> |
| 8 as="SkyElement" /> | 8 <import src="city-sequence.sky" as="CitySequence" /> |
| 9 <link rel="import" href="city-data-service.sky" as="CityDataService" /> | |
| 10 <link rel="import" href="city-sequence.sky" as="CitySequence" /> | |
| 11 | 9 |
| 12 <template> | 10 <template> |
| 13 <style> | 11 <style> |
| 14 div { | 12 div { |
| 15 font-size: 16px; | 13 font-size: 16px; |
| 16 color: #FFF; | 14 color: #FFF; |
| 17 background-color: #333; | 15 background-color: #333; |
| 18 padding: 4px 4px 4px 12px; | 16 padding: 4px 4px 4px 12px; |
| 19 } | 17 } |
| 20 </style> | 18 </style> |
| 21 <div>{{ state }}</div> | 19 <div>{{ state }}</div> |
| 22 </template> | 20 </template> |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 586 return; | 584 return; |
| 587 | 585 |
| 588 this.updateView(this.loader.getItems(), true); | 586 this.updateView(this.loader.getItems(), true); |
| 589 } | 587 } |
| 590 }); | 588 }); |
| 591 | 589 |
| 592 })(this); | 590 })(this); |
| 593 | 591 |
| 594 </script> | 592 </script> |
| 595 | 593 |
| OLD | NEW |