Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Side by Side Diff: sky/examples/city-list/city-list.sky

Issue 694423002: Replace <link rel="import"> with <import> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sky/examples/city-list/index.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | sky/examples/city-list/index.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698